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