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