Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
24281 | 老方 | 整数大小比较 | C++ | Accepted | 0 MS | 248 KB | 210 | 2023-08-10 12:54:38 |
#include<iostream> using namespace std; int main(){ int x,y; cin>>x>>y; if (x>y){ cout<<">"; }else if(x==y){ cout<<"="; }else{ cout<<"<"; }return 0; }