Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51587 | 张思存 | 整数大小比较 | C++ | Accepted | 1 MS | 252 KB | 220 | 2024-09-22 21:25:24 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin >> a >> b; if(a>b){ cout<<">"; }if(a==b){ cout<<"="; }if(a<b){ cout<<"<"; } return 0; }