#include<stdio.h>
typedef struct stud{
    float length;
    float width;
}vick;
int main(){
    float length,width;
    if(length<0||width<0){
        printf("Invalid input");
        return 0;
    }
    
        printf("%f",length*width);
        return 0;
    }
}