0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 02:58:48 +00:00

B2003 输出第二个整数

R52361246
This commit is contained in:
Baoshuo Ren 2021-07-04 08:26:25 +08:00 committed by Baoshuo Ren
parent 2b59f95159
commit 33b4e12a05
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << b << endl;
return 0;
}