#include <iostream>
using namespace std;
int main()
{
	int x = -454;
	int y = 1;
	//cout << "just to test, the conditional is " << (x > 2) << endl;
	if (x - 3 > y + 1)
	{
		cout << "x-3 is greater than 2" << endl;
	}
	else
	{
		cout << "x-3 is less than or equal to 2" << endl;
	}

/*
	if (x - 3 < y + 1)
	{
		cout << "x-3 is less than 2" << endl;
	}
	if (x - 3 == y + 1)
	{
		cout << "x-3 is equal to 2" << endl;
	}
*/
	cout << "x is now " << x << endl;

	return 0;
}