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