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