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