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