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