#include<stdio.h>
int main ()
{
    int a;
    float b;
    printf("enter the age of the patient"\n);
    scanf("%d",&a);
    printf("enter the height of the patient in cm");
    scanf("%f",&b);
    printf("AGE:%d",a);
    printf("HEIGHT:%f",b);
    return 0;
}