提交时间:2026-05-19 12:42:37
运行 ID: 88907
#include<iostream> using namespace std; int main(){ int a, b, c; cin >> a >> b >> c; // 读入3个整数 cout << b; // 输出第2个 return 0; }