// editor1
#include<stdio.h>
typedef struct rectangle{
    float length;
    float breath;
}rectangle;

rectangle area(rectangle *r1){
    int result = r1->length * r1->breath;
    printf("%.2f",result);
}

int main(){
    int len,wid;
    scanf("%d %d",&len,&wid);
    if(len<0 || wid<0){
        printf("Invalid input");
        return 0;
    }
    rectangle *r1;
    r1->length = len;
    r1->breath = wid;
    area(r1);
    
    
}