// 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;
}