mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 02:58:48 +00:00
P1001 A+B Problem
R52520163
This commit is contained in:
parent
dc89802b4b
commit
b6bc33385e
10
Luogu/problem/P1001/P1001.cpp
Normal file
10
Luogu/problem/P1001/P1001.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
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