#include<stdio.h>
struct patient
{
    char name[100];
    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");
        return 0;
        
    }
    if(p.height<0||p.height>3.0)
    {
        printf("Invalid input");
    }
    printf("Name: %s\n",p.name);
    printf("Age: %d\n",p.age);
    printf("Height: %.2f feet",p.height);
}