提交时间:2022-11-27 16:50:02

运行 ID: 6220

#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; }