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