mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 18:48:48 +00:00
1000. A+B Problem
22943996
This commit is contained in:
parent
dc201bad90
commit
b47cded883
10
POJ/1000/1000.cpp
Normal file
10
POJ/1000/1000.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
int a, b;
|
||||
cin >> a >> b;
|
||||
cout << a + b << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user