#include <stdio.h>

struct Patient {
    char name[100];
    int age;
    float height;
};

int main() {
    struct Patient p;
    gets(p.name);
    scanf("%d", &p.age);
    scanf("%f", &p.height);
    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);
    }
    return 0;
}