// editor3
#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\n ",Height);
    return0;
}