if (votes for Amanda >= votes for Ben && votes for Cylcone)
{
cout << "Amanada Wins" << endl;
}
else if (votes for Ben >= votes for Amanda && votes for Cylcone)
{
cout << "Ben Wins" << endl;
}
else if (votes for Cyclone >= votes for Ben && votes for Amanda)
{
cout << "Cylcone Wins" << endl;
}
}
system("pause");
return 0;
}