#include using namespace std; int main() { int H, N, M; cin >> H; cin >> N; cin >> M; cout << N * M << endl; return 0; }