#include ;
using namespace std;
int main()
{
setlocale(0, "");
int a, c;
cout << "Введите два числа..." << endl;
cin >> a, c;
if (a > c)
cout << a << ">" << c << endl;
else if (a < c)
cout << a << "<" << c << endl;
else
cout << a << "==" << c << endl;
system("pause");
return 0;
}
using namespace std;
int main()
{
setlocale(0, "");
int a, c;
cout << "Введите два числа..." << endl;
cin >> a, c;
if (a > c)
cout << a << ">" << c << endl;
else if (a < c)
cout << a << "<" << c << endl;
else
cout << a << "==" << c << endl;
system("pause");
return 0;
}