1 #include <iostream>
2 #include <cstdio>
3 #include <algorithm>
4 #include <cstring>
5 #include <string>
6 using namespace std;
7 typedef long long ll;
8 typedef unsigned long long ull;
9 typedef long double ld;
10
11 int main()
12 {
13 char a[1000005];
14 char b[1000005];
15 cin >> a;
16 cin >> b;
17 int lena,lenb;
18 int i,j;
19 for(i = 0; a[i] == '0'; i++);
20 for(j = 0; b[j] == '0'; j++);
21 lena = strlen(a)-i;
22 lenb = strlen(b)-j;
23 if(lena == 0 && lenb == 0)
24 {
25 cout << '=';
26 return 0;
27 }
28 else if(lena > lenb)
29 cout << '>';
30 else if(lena < lenb)
31 cout << '<';
32 else
33 {
34 int count = 0;
35 int k = strlen(a);
36 for(int m = i, n = j;m < k; m++, n++)
37 {
38 int p = a[m] - '0';
39 int q = b[n] - '0';
40 if(p == q)
41 {
42 count = 1;
43 continue;
44 }
45 else if(p > q)
46 {
47 count = 0;
48 cout << '>';
49 break;
50 }
51 else
52 {
53 count = 0;
54 cout << '<';
55 break;
56 }
57 }
58 if(count)
59 {
60 cout << '=';
61 }
62 }
63
64 return 0;
65 }