#include <iostream>   
#include <string>

using namespace std;

int age;
string name;
float height;

int main()
{
  cout << "Enter your age: ";
  cin >> age;

  cout << endl << "Enter your name followed by your height: ";
  cin >> name >> height;

  cout << endl << "Hi " + name + ", you are " 
       << age << " years old and " 
       << height << " inches tall." << endl;;

  return 0;
}
