题解 P5703 【【深基2.例5】苹果采购】

ShineEternal

2019-12-21 20:57:57

Solution

已知每人分到的苹果数,我们乘上人数就是总数 ```cpp #include<cstdio> using namespace std; int main() { int a,b; scanf("%d%d",&a,&b); printf("%d\n",a*b); return 0; } ```