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