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

14 lines
163 B
C++

#include <bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
int a, b;
int main() {
cin >> a >> b;
cout << a + b << endl;
return 0;
}