0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 16:40:05 +00:00
OI-codes/Luogu/B2001/B2001.cpp

11 lines
143 B
C++
Raw Normal View History

2021-07-04 07:27:48 +08:00
#include <bits/stdc++.h>
using namespace std;
int main() {
long long a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}