#include<iostream> #include<string> #include<algorithm> using namespace std; struct Mouse{ int weight; string color; }; bool Compare(Mouse x,Mouse y){ return x.weight>y.weight; } int main(){ int n; while(cin>>n){ Mouse arr[n]; for(int i=...