提交时间:2022-11-27 16:06:01

运行 ID: 6174

#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b if(a>b){ cout<<“>”; }else if(a<b){ cout<<“<”; }else{ cout<<"="; }