提交时间:2022-11-27 16:51:53

运行 ID: 6223

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