S001-AC.cc
321 Bytes
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str1,str2;
cin >> str1;
cin >> str2;
if(str1 > str2)
{
cout << str1 << " > " << str2 << endl;
}
else if(str1 < str2)
{
cout << str1 << " < " << str2 << endl;
}
else
{
cout << str1 << " = " << str2 << endl;
}
return 0;
}