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