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