0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-02-17 21:46:53 +00:00

15 lines
203 B
C++
Raw Normal View History

#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int a, b;
int main() {
std::ios::sync_with_stdio(false);
cin >> a >> b;
cout << a + b << endl;
return 0;
}