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