// clinic programe
#include<stdio.h>
int main(){
    int age;
    float height;
    printf("welcome to the clinic\n ");
    printf("please enter your age :",age);
    scanf("%d",&age);
    printf("please enter your height:",height);
    scanf("%f",&height);
    
    return 0;
    
    
}