Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
38512 | 奚晨瑞 | 整数大小比较 | C++ | Accepted | 0 MS | 248 KB | 184 | 2024-01-27 16:04:20 |
#include<iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(x>y){ cout<<">"; } if(x==y){ cout<<"="; } if(x<y){ cout<<"<"; } return 0; }