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