#include <stdio.h>
int main(){
    
    int age;
    float height;
    
    // Read age and height from input
    scanf("%d" , &age);
    scanf("%f" , &height);
    
    // Display the values in the required format
    printf("Age: %d years\n , age");
    printf("Height: % .1f cm\n , height");
    return 0;
}