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