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