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