#include<iostream>
using namespace std;
int main()
{
    int age;
    float height;
    cout<<"Enter the age (in years)"<<endl;
    cin>>age;
    cout<<"Enter the Height in cm"<<endl;
    cin>>height;
    cout<<"Age "<<age<<"" years<<endl;
    cout<<"Height "<<height<<" cm"<<endl;
}