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