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