| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 73114 | sh25_shenpy | 比较大小 | C++ | Accepted | 0 MS | 236 KB | 176 | 2025-11-05 20:50:44 |
#include <bits/stdc++.h> using namespace std; int main( ) { int h,s; cin>>h>>s; if(h>=s) { cout<<h; } else cout<<s; return 0; }