#include<stdio.h>
int main(){
int age;
float height;
printf("Enter the age:");
scanf("%d",&age);
printf("Age:%d years\n",age);
printf("Enter the height:");
scanf("%f",&height);
printf(Height:)
return 0;
}