#include <iostream> using namespace std; int main() { int x, y; cin >> x >> y; int total = x * y; cout << total << endl; return 0; }