#include <stdio.h>
int main()
{
    int n; //no. of juices
    int t; //time needed per juice
    scanf("%d"\n,n);
    scanf("%d",t);
    printf("%d", n*t);
}