#include<iostream>
using namespace std;
int main()
{
    int length,width;
    cin>>length;
    cin>>width;
    if(length <=o||width<=0){
        cout<<"Invalid input";
    }
    else{
        cout<<length*width;
    }
    return 0;
}