OI-Codes/XSMOJ/输出第二个整数.cpp

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;
}