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