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