Game Programming/BaekJoon
BaekJoon_1330
hallojih
2021. 1. 25. 02:05
#include <iostream>
using namespace std;
int main()
{
int iA, iB = 0;
cin >> iA >> iB;
if ((-10000 <= iA && iA <= 10000) && (-10000 <= iB && iB <= 10000))
{
if (iA > iB)
cout << '>' << endl;
else if (iA < iB)
cout << '<' << endl;
else
cout << "=="<< endl;
}
return 0;
}
728x90
반응형