12345
for(int i = 0;i < many;i++) { getline(cin,other[i].name); } cout << other[0].name;
for(auto i : other) { getline(cin,i.name); } cout << other[0].name;
for (auto& i : other) { getline(cin,i.name); } cout << other[0].name;