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