0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-09 01:38:48 +00:00
OI-codes/Hydro/system_test/6/6.cpp

13 lines
209 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
freopen("a+b.in", "r", stdin);
freopen("a+b.out", "w", stdout);
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}