
#include "stdafx.h" // Uncomment this line if using Visual Studio
#include <iostream>
int main()
{
using namespace std;
cout << "Hello, nice to meet you. How are you today?";
int x;
cin >> x ;
cout << "That's good. How old are you?" << endl;
int y;
cin >> y;
cout << "Oh, What a young age " << y << " is" << endl;
cout << "where are you from?" << endl;
return 0;
}


#include "windows.h"
#include <iostream>
int main()
{
char answer[11];
using namespace std;
cout << "Hello, nice to meet you. How are you today?" << endl;
cin >> answer ;
cout << "That's good. How old are you?" << endl;
int y;
cin >> y;
cout << "Oh, What a young age " << y << " is" << endl;
cout << "Where are you from?" << endl;
char place[11];
cin >> place;
cout << "Wow...I really dont care you can press Alt + F4 anytime now" << endl;
Sleep(5000);
return 0;
}