#include<stdio.h>

struct patient {
    char name[101];
    int age;
    float height;
};

int main(){
    struct patient p;
    
    scanf("%s", p.name);
    scanf("%d", &p.age);
    scanf("%df", &p.height);
    
    if (p.page < 0){
        printf("Invalid input\n");
    } else {
        printf("Name: %s\n", p.name);
        printf("Age: %d\n", p.age);
        printf("Height: %.2f feel\n",p.height);
    }
    return 0;
}