Initial commit

This commit is contained in:
2022-06-01 20:14:50 +03:00
commit 8b9cce4739
1094 changed files with 68851 additions and 0 deletions

View File

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