#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");
        return 0;
    }
    printf("Name: %s\nAge: %d\nHeight: %2.f feet,p.name,p.age,p.height);
    return 0;
}