mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:38:48 +00:00
21 lines
276 B
C++
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;
|
|
}
|