// clinic programe
#include<stdio.h>
int main(){
    int age;
    float height;
    // printf("welcome to the clinic\n ");
    // printf("please enter your age is age :\n");
    scanf("%d",&age);
    // printf("please enter your height:");
    scanf("%1f",&height);
    printf("Age : %d \nHeight: %1f".cm,age ,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;
    
    
}