#include<stdio.h>
int main()
{
    int age;
    float height;
    scanf("%d",&age);
    scanf( "%c",&height);
    printf("Age:%d years/n",age);
    printf("height: %0.1fcm/h,"height);
    return 0;
}