11215 - 求A*B

#include<bits/stdc++.h>
using namespace std;
int main(){
  	long long a,b,ans;
  	cin>>a>>b;
  	ans=a*b;
  	cout<<ans;
	return 0;
}