#include <stdio.h>
struct Patient {
    char name[101];
    int age;
    float height;
};

void sture_and_display_patient(struct Patient p) {
    if (p.age < 0) {
        printf("Invalid input\n");
} else {
    printf("Name: %s\n", p.name);
    printf("Age: %d\n", p.age);
    printf("Height: %.2f feet", p.height);
}
}
int main() {
    struct Patient p;
    sn printf(Patient1.name, 101, "Jane Smith");
    Patient1.age = -5;
    Patient1.height = 5.4;
    
    sture_and_display_patient(patient1);
    return 0;
}