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