提交时间:2022-11-27 16:47:15
运行 ID: 6217
#include<iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(x>y){ cout<<">"; }else if (x==y){ cout<<"=="; }else if (x<y){ cout<<"<"; } return 0; }