#include <stdio.h>
int main;
    int a;
    float b; 
 {   clrscr();
    printf("enter  the  age of the patient ");
    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;}