// 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" ,age);
        printf("Heigth:%f cm" ,heigth)
    }
}