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

B2007 A + B 问题

R52397520
This commit is contained in:
Baoshuo Ren 2021-07-04 21:00:37 +08:00 committed by Baoshuo Ren
parent 52782bee54
commit 42092af198
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;
}