提交时间:2022-11-27 16:16:18

运行 ID: 6182

#include <iostream> using namespace std; int main(){ int x,y; cin>>x,y; if(x>y){ cout<<">"<<endl; }else if(x<y){ cout<<"<"<<endl; }else{ cout<<"="<<endl; } return 0; }