Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
46285 | yuzhengxun | 比较大小 | C++ | Accepted | 0 MS | 240 KB | 147 | 2024-05-03 09:08:38 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; if(n>m){ cout<<n; }else{ cout<<m; } return 0; }