#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
//Create a simple C++ program to:
// 1. Ask the user for name
// 2. Ask for age
// 3. Greet the user by name
// 4. Say if the user can vote
// 5. Repeat # 1 and # 2
int main ()
{
int userName;
int userAge;
cout<< "Hello! What's your name?"<<endl;
cin>>userName;