#include <iostream>
// Do not expose more from a namespace than absolutely necessary
using std::cout;
using std::cin;
using std::endl;
int main()
{
unsignedint x; // Almost no-one is 3.14 years, or -7 years old.
cout << "how old are you?" << endl;
cin >> x;
cout << "so you are " << x << " years old" << endl;
cin.get();
cin.get();
return 0;
}