题解
2023-06-24 15:35:01
发布于:上海
29阅读
0回复
0点赞
#include<bits/stdc++.h>
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;
}
这里空空如也
有帮助,赞一个