Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43041 | yuzhengxun | 比较大小 | C++ | Accepted | 0 MS | 236 KB | 142 | 2024-03-06 20:04:09 |
#include<iostream> using namespace std; int main() { int n,m; cin>>n>>m; if(n>m){ cout<<n; }else{ cout<<m; } return 0; }