最高速度答案
2023-07-24 17:13:40
发布于:浙江
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int a, b;
cin >> a >> b;
cout << a+b;
return 0;
}
//还简洁
全部评论 2
#include<bits/stdc++.h>
int main(){int a, b;stdcin>>a>>b;stdcout<<a + b;return 0;}2023-07-29 来自 广东
2#include<bits/stdc++.h>
int main(){short a, b;stdscanf("%hd %hd", &a, &b);stdprintf("%d", a + b);return 0;}2023-07-29 来自 广东
0
有帮助,赞一个