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