0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-27 13:56:26 +00:00

#1. A+B Problem

https://sjzezoj.com/submission/25012
This commit is contained in:
Baoshuo Ren 2021-08-31 12:33:01 +08:00 committed by Baoshuo Ren
parent afb997d950
commit fc26b3d636
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

10
S2OJ/1/1.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}