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