//头文件,万能头也行 #include <iostream> //主程序 int main() { int a = 0, b = 0, c = 0; std::cin >> a >> b >> c; std::cout << b << "\n"; //输出第二个整数 return 0; }