#include<iostream>
#include<string>
#include<cctype>
using namespace std;
int main() {
string a, b;
getline(cin, a);
getline(cin, b);
for (int i = 0; i < a.size(); i++) {
a[i] = tolower(a[i]);
}
for (int i = 0; i < b.size(); i++) {
b[i] = tolower(b[i]);
}
if (a == b) {
puts("=");
} else if (a < b) {
puts("<");
} else {
puts(">");
}
return 0;
}