// editor3
#include <stdio.h>
int main ()
{
    int age;
    float heigth;
    scanf("%d" ,&age);
    scanf("%f" ,&height);
    if((age >=0 && age <=150) && (heigth>=30.0 && height<=250.0))
    {
        printf("Age: %d years\n" ,age);
        printf("Heigth: %.1f cm" ,heigth);
    }
    return 0;
}