#include <iostream> #include <cstdio> using namespace std; int main() { long long a, b; cin >> a >> b; printf("PROD = %lld", a * b); return 0; }