/*
    input_multiple.cpp how to read multiple names and numbers from the input.
*/

#include <iostream>           // Include cin / cout streams for input/output
#include <string>             // include string type
using namespace std;

int main()
{         
   string firstname;
   string lastname;
   int    age;
   double height;

   cout << "Please enter your first name:";
   cin  >> firstname;
   cout << "Please enter your last name:";
   cin  >> lastname;
   cout << "Please enter your age:";
   cin  >> age;
   cout << "Please enter your height in meters:";
   cin  >> height;
   
   cout << "Hello " << firstname << " " << lastname
        << " of age " << age << " and height " << height << "\n";

   return 0;
}

