| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 55249 | zhangweiran | 输出第二个整数 | C++ | Accepted | 1 MS | 252 KB | 130 | 2024-11-03 22:08:13 |
#include<iostream> using namespace std; int main() { int a,b,c; cin >> a >> b >> c; cout << b; return 0; }