mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-25 05:51:58 +00:00
1000. A+B Problem
https://hydro.ac/d/bzoj/record/623d12e7d48588880961b609
This commit is contained in:
parent
138677acc7
commit
9b6c6b4a18
14
BZOJ/1000/1000.cpp
Normal file
14
BZOJ/1000/1000.cpp
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user