0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 15:25:25 +00:00
OI-codes/AcWing/768/768.cpp

14 lines
322 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
string s1, s2;
getline(cin, s1);
getline(cin, s2);
transform(s1.begin(), s1.end(), s1.begin(), ::tolower);
transform(s2.begin(), s2.end(), s2.begin(), ::tolower);
cout << (s1 < s2 ? '<' : (s1 == s2 ? '=' : '>')) << endl;
return 0;
}