#include <iostream>
using namespace std;
int main()
{
string a, b;
getline(cin, a);
getline(cin, b);
for(auto &c : a)
if(c <= 96 && c != ' ') c += 32;
for(auto &c : b)
if(c <= 96 && c != ' ') c += 32;
if(a > b) puts(">");
else if(a < b) puts("<");
else puts("=");
return 0;
}