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