#include <iostream>
#include <cstring>
using namespace std;
int main(void)
{
string str1, str2;
getline(cin, str1);
getline(cin, str2);
for (auto &c : str1) c = tolower(c);
for (auto &c : str2) c = tolower(c);
if (str1 == str2) puts("=");
else if (str1 > str2) puts(">");
else puts("<");
return 0;
}