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