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