#include<stdio.h>
#include<string.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\n", p.Name);
    printf("Age: %d\n", p.Age);
    printf("Height: %.2f feet\n", p.Height);
    }
    return 0;
}