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