0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 01:25:25 +00:00
OI-codes/USACO-Training/1.2/1/1.cpp
2021-12-17 21:35:51 +08:00

21 lines
276 B
C++

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