#include <stdio.h>
int main(){
    int age;
    float height;
    // Read inputs (note: use & before variable names)
    scanf("%d" , &age);
    scanf("%f" , &height);
    // Print output correctly
    printf("Age: int years\n , age");
    printf("Height: %.1int cm\n , height");
    return 0;
}