0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 19:45:24 +00:00

1000. 入门测试题目

http://ybt.ssoier.cn:8088/statusx.php?runidx=15554592
This commit is contained in:
Baoshuo Ren 2022-04-01 14:34:10 +08:00
parent a6a7bd2fec
commit d474714691
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

14
ybt/1000/1000.cpp Normal file
View 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;
}