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