0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 07:25:25 +00:00
OI-codes/USACO-Training/1.2/1/1.cpp

21 lines
276 B
C++
Raw Normal View History

2021-12-17 13:35:51 +00:00
/*
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;
}