关于P1001 A+B Problem的所有做法
  • 板块灌水区
  • 楼主Zqx_Vector_2014
  • 当前回复17
  • 已保存回复17
  • 发布时间2024/10/17 19:44
  • 上次更新2024/10/17 21:28:24
查看原帖
关于P1001 A+B Problem的所有做法
1279390
Zqx_Vector_2014楼主2024/10/17 19:44

请大家帮忙收集些奇奇怪怪的AC代码。


最简单的:

#include<bits/stdc++.h>
using namespace std;
int main(){
	int a,b;
	cin>>a>>b;
	cout<<a+b;
}
2024/10/17 19:44
加载中...