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