// editor3
#include<iostream>
using namespace std;
int main(){
    int l , b;
    cin>>l>>b;
    if(l<=0 || b <=0){
        cout<<"Invalid input";
    }
    else{
        cout<<l*b;
    }
    }
}