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