// editor1
#include<iostream>
using namespace std;
int main()
{
    int age;
    float height;
    
    cin>> age=11;
    cin>> height=50.8;
    
    cout<<"Age:"<<age<<"years"<<endl;
    cout<<"Height"<<height<<"cm";
    
    return 0;
}