#include<bits/stdc++.h>
using namespace std;
struct student{
int id;
string name,gender;
int age;
student():id(0),name(""),gender(""),age(0){};
student(int id,string name,string gender,int age):id(id),name(name),gender(gender),age(age){};
bool operator&...