OI-Codes/XSM OJ 重庆小码王集团OJ/输出第二个整数.cpp
2024-02-15 22:38:30 +08:00

13 lines
170 B
C++

#include <bits/stdc++.h>
using namespace std;
int main(){
int first;
int second;
int third;
cin >> first;
cin >> second;
cin >> third;
cout <<second;
return 0;
}