通过次数
0
提交次数
输入任意两个数,求他们的积。
输入任意两个数
他们的积
1 2
2
#include <iostream> using namespace std; int main() { int a,b; cin >> a >> b; cout << a*b << endl; return 0; }