#include <bits/stdc++.h>
using namespace std;
struct student
{
string naem;
string gender;
int iq;
int age;
int shengao;
};
int main()
{
student a;
student b;
a = {"李辰希","女",120,10,137};
b = {"田则航","男",250,9,135};
cout<< a.naem<<' '<<a.gender<<' '<<a.iq<<' '<<a.age<<' '<<a.shengao<<endl;
cout<< b.naem<<' '<<b.gender<<' '<<b.iq<<' '<<b.age<<' '<<b.shengao;
}