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

#1. A + B Problem

https://uoj.ac/submission/557214
This commit is contained in:
Baoshuo Ren 2022-06-06 16:37:49 +08:00
parent 884d1b4ee4
commit 07f2d4da0a
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

17
UniversalOJ/1/1.cpp Normal file
View File

@ -0,0 +1,17 @@
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int a, b;
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> a >> b;
cout << a + b << endl;
return 0;
}