#include<iostream> using namespace std; int main(){ int a, b, c; cin >> a >> b >> c; // 读入3个整数 cout << b; // 输出第2个 return 0; }