// editor5
#include<iostream>
using namespace std;
int main(){
    int age;
    double height;
    cin>>"Age">>endl;
    cin>>"Height">>endl;
    cout<<"Age: "<<age<<" year"<<endl;
    cout<<"Height: "<<height<<" cm"<<endl;
    return 0;
}