mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-09 01:38:48 +00:00
13 lines
209 B
C++
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;
|
|
}
|