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