0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 18:31:59 +00:00

#1. A + B 问题

https://loj.ac/s/1025520
This commit is contained in:
Baoshuo Ren 2021-01-02 23:45:28 +08:00 committed by Baoshuo Ren
parent 845b4e4dac
commit 1d06074157
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

10
LibreOJ/1/1.cpp Normal file
View 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;
}