Here's the problem (i know it's really easy "it's for beginners")
You will be given two numbers X and Y and you will have to define the relation between them. It can be one of the following relations :
X greater than Y.
X smaller than Y.
X equals Y.
and that's my solution
include <iostream>
using namespace std;
int main()
{
int X;
int Y;
cin >> X;
cin >> Y;
if ( X> -10^12 && Y<10^12) {
if (X>Y)
cout << ">" <<endl;
else if (X<Y)
cout << "<" << endl;
else if (X=Y)
cout << "=" << endl;
}
return 0;
}
now what's wrong? it can't be accepted on Codeforces