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