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