// editor1

#include<stdio.h>
struct Rectangle{
    float length;
    float width;
};
float calculateArea(struct Rectangle r){
    return r.length*r.width;
}
int main(){
    struct Rectangle plot;
    
    if(scanf("%f",&plot.length)!=1||plot.length<0){
        printf("Invalid input\n");
        return 1;
    }
    if(scanf("%f",plot.width)!=1||plot.width<0){
        printf("Invalid input\n");
        return 1;
    }
    float area=calculateArea(plot);
    printf("%.2f\n",area);
    return 0;
}