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