#include #include #include #include int main() { char buffer[999]; char voting[99][10]; char names[99][50]; int count = 0; while(fgets(buffer, sizeof(buffer), stdin) != NULL) { char current_votes[10] = ""; char current_name[50] = ""; sscanf(buffer, "%s %[^\n]", current_votes, current_name); int is_contained = 0; for (int i=0; i