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