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