0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 19:45:24 +00:00

Submitting Solutions

This commit is contained in:
Baoshuo Ren 2021-12-17 21:35:51 +08:00
parent 38fd50cc64
commit 1a72738cb6
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,20 @@
/*
ID: baoshuo1
TASK: test
LANG: C++
*/
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
int main() {
freopen("test.in", "r", stdin);
freopen("test.out", "w", stdout);
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}