// My Bar

#include <iostream>
using namespace std;

int main()
{
	int age;									// declare variable

	cout << "At this bar you have to be 21 and up to be in here ";
	cout << "by the way, how old are you?\n";				// Ask primary question
	cin >> age;								// retrieve personal information
	cout << age << endl;
	cin.get ();

	if (age > 21)
	{
	cout << "You could've fooled me... What you're having?\n";	// allow access
	}
	else (age == 21)	
	{									
	cout << "You're Ok\n";						// barely allow access
	}
	else
	{
	cout << "Get the F*** out of my bar!!!\n";			// deny access
	}
}
