作者:
Jimmy
创始人
创建日期:2024年10月13日 08:04
浏览量:168
#include <bits/stdc++.h>
using namespace std;
int main(){
cout<<"Hello World";
return 0;
}
2.A+B Problem
#include <bits/stdc++.h>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout<<a+b;
return 0;
}
请大家务必记住这两段代码
要不然小心CSP爆零