using namespace std;
void PrintIntro();
string GetGuessAndPrintBack();
int Limit = 5;
// the entry point for our application
int main()
{
PrintIntro();
for (int count = 1; count <= Limit; count++)
{
GetGuessAndPrintBack();
}
cout << endl;
return 0;
}