mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:38:47 +00:00
14 lines
322 B
C++
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;
|
||
|
}
|