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