#include <iostream> using namespace std; int main() { int a, b; cin>>a>>b; if (a<b) { cout<<"<"; }else if (a==b) { cout<<"="; }else { cout <<">"; } return 0; } // 64 位输出请用 printf("%lld")
#include <iostream> using namespace std; int main() { int a, b; cin>>a>>b; if (a<b) { cout<<"<"; }else if (a==b) { cout<<"="; }else { cout <<">"; } return 0; } // 64 位输出请用 printf("%lld")