| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 46281 | zhangchunhong | 比较大小 | C++ | Accepted | 0 MS | 248 KB | 129 | 2024-05-03 09:06:21 |
#include<bits/stdc++.h> using namespace std; int main() { int m,n; cin>>m>>n; cout<<max(m,n); return 0; }