Задача

4/7

Cyrillic file

Теория

Cyrillic file

If the file contains Russian letters (any character with a code greater than 127), then you must specify the encoding when opening data = open("input.txt", "r", encoding="utf-8")

Задача

The file contains the USACO Olympiad participants in the following format:

last name first name school score

Last and first name — text strings that do not contain spaces. School — an integer from 1 to 99. Score — an integer from 0 to 100.


Indicate in your answer the schools from which the most participants took part in the Olympiad. Schools must be listed in ascending order, separated from each other by one space.
For example, 1 3 6.

Выберите правильный ответ, либо введите его в поле ввода

Комментарий учителя