// editor4
#include<stdio.h>
int main()
{
 int age=11;
 float ht=50.8;
 
 printf("\nAge: %d",age);
 printf("\nHeight: %d",ht);
 return 0;
}