#include<stdio.h>
int main(){
    int a;
    float b;
    scanf("age: %d years\n",a);
    printf("heigth:%.1f cm",b);
    return 0;
}