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