joker_martin @ 2023-06-18 10:59:53
我就知道,简单基本没好货。 c++
#include<iostream>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<a*b;
return 0;
}
by ccg12345 @ 2023-06-18 11:05:09
能不能看看数据范围啊……
by joker_martin @ 2023-06-18 11:20:23
@Zh_register 谢谢
by CBC18 @ 2023-06-23 20:04:23
我发现你似乎好像可能必须一定会python
print(int(input())*int(input()))
AC