#include<iostream> #include<cstdio> using namespace std; int main() { int a,b; scanf("%d\n%d",&a,&b); cout<<"PROD = "<<a*b<<endl; return 0; }