#include <iostream> #include <variant> #include<cstdio> using namespace std; #include<vector> #include<algorithm> #include<string> class Person { public: Person(string name, int age, int pos) { this->name = name; this->age = age; this->num = pos; } string...