// editor1
#include<stdio.h>
int main()
{
    float l,b,a;
    scanf("%f\n%f\n%f",&l&b&a);
    a=l*b;
    printf("%d",a);
    return 0;
}