C++代码
#include<bits/stdc++.h>
using namespace std;
int main()
{
string a,b;
getline(cin,a);
getline(cin,b);
for(char &c:a)
c=toupper(c);
for(char &c:b)
c=toupper(c);
if(a>b) puts(">");
else if(a<b) puts("<");
else puts("=");
return 0;
}