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