#include <stdio.h>
typedef struct {
 char name[50];
 float  height;
 float  weight;
} human;

void taro(int);
void hanako(human *);
