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