#include <iostream>
using namespace std;
int main()
{
	int aValue=3;
	int aAnotherValue=3;
	if(aValue==aAnotherValue)
	{
		cout<<"3 and 3 are the same"<<endl;
	}
	else
	{
		cout<<"3 and 3 are different"<<endl;
	}
	cout<<"done with if"<<endl;
	cin.get();
}