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