using namespace std;
int main() { int a,b,PROD; cin>>a>>b; PROD = a*b; cout<<”PROD = “<<PROD; return 0; }