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