#include<stdio.h>
int main()
int age
int (1-100)
float height;
printf("Enter your age(in year) :");
scanf("%d",&age);
printf("Enter your height(in centimeter):");
scanf("%f",&height);
printf("Age:%d year\n",age);
printf("Height:%.2f cm\n",height);
return 0;}