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