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