```
include[HTML_REMOVED]
include[HTML_REMOVED]
using namespace std;
include[HTML_REMOVED]
int main()
{
char a[100];
char b[100];
fgets(a,100,stdin);
fgets(b,100,stdin);
if(a[strlen(a)-1]==’\n’)a[strlen(a)-1]=0;
if(b[strlen(b)-1]==’\n’)b[strlen(b)-1]=0;
for(int i=0;i[HTML_REMOVED]=’A’&&a[i]<=’Z’)a[i]+=32;
for(int j=0;j[HTML_REMOVED]=’A’&&b[j]<=’Z’)b[j]+=32;
int t;
t=strcmp(a,b);
if(t==0)cout<<”=”;
else if(t>0)cout<<”>”;
else cout<<”<”;
return 0;
}
``