Run ID:111017

提交时间:2025-02-25 10:57:23

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