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