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