Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
56794 | tonghanchen | 比较大小 | C++ | Accepted | 0 MS | 248 KB | 129 | 2024-11-15 21:29:16 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; if (a>b) cout<<a; else if(a<b) cout<<b; }