0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 12:58:48 +00:00

1000. 萌新关爱之-A+B Problem

https://xjoi.net/detail/1118603
This commit is contained in:
Baoshuo Ren 2021-09-11 21:48:30 +08:00 committed by Baoshuo Ren
parent 90b0f86e1d
commit 6c0cc1966e
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

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;
}