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