题目:
https://www.luogu.com.cn/problem/P5703
分析:略
上代码:
#include<bits/stdc++.h> using namespace std; int a,b; int main() { cin>>a>>b; cout<<a*b<<endl; return 0; }
洛谷P5703
原文:https://www.cnblogs.com/2019computer/p/12218286.html