0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00

1000. A+B Problem

https://vijos.org/records/6128e7c6f413620441990e8c
This commit is contained in:
Baoshuo Ren 2021-08-27 22:29:30 +08:00 committed by Baoshuo Ren
parent d0372f7608
commit 2b1cbc61af
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

10
Vijos/1000/1000.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;
}