#include<stdio.h>
#include<string.h>
struct Patient {
    char name[101];
    int age;
    float height;
};
void process(struct Patient *p) {
    if(p->age < 0 || p->height <=0){
        printf("Invalid input");
        return ;
    }
    printf("Name: %s\n" , p->name);
    printf("Age: %d\n" , p->age);
    printf("Height: %.2f feet\n" , p->height);
    
}
int main(){
    struct Patient p;
    fgets(p.name, sizeof(p.name), stdin);
    p.name[strcspn(p.name)] = '\0';
    if(scanf("%d %f",&p.age, &p.height) != 2){
        printf("Invalid input\n");
        return 1;
    }
    process(&p);
    return 0;
}