#include<stdio.h>
int main()
{
    int length;
    int width;
    scanf("%d %d ",&length,&width);
    
    printf("%.f",length * width);
}