// editor3
#include<stdio.h>
int main()
{
    float l;
    float w;
    scanf("%.f",&l,&w);
    printf("%.f",l*w);
    return 0;
}