| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 46283 | ☩Deutschland☩ | 比较大小 | C++ | Accepted | 1 MS | 248 KB | 147 | 2024-05-03 09:07:14 |
#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; }