feat: add luogu questions

This commit is contained in:
2023-10-03 17:51:53 +08:00
parent c9fbb1e74a
commit 261c0e95b9
9 changed files with 230 additions and 0 deletions

11
luogu/p1001.cxx Normal file
View File

@@ -0,0 +1,11 @@
#include<iostream>
using namespace std;
int main()
{
int a,b;
while(cin>>a>>b)
{
cout<<a+b<<endl;
}
return 0;
}