text = input("Введите текст: ")count_e = text.count("е") + text.count("E") + text.count("ё") + text.count("Ё")count_o = text.count("о") + text.count("O")if count_e > count_o:print("Буква 'e' встречается чаще")elif count_o > count_e:print("Буква 'o' встречается чаще")else:print("Буквы 'e' и 'o' встречаются одинаковое количество раз")
text = input("Введите текст: ")
count_e = text.count("е") + text.count("E") + text.count("ё") + text.count("Ё")
count_o = text.count("о") + text.count("O")
if count_e > count_o:
print("Буква 'e' встречается чаще")
elif count_o > count_e:
print("Буква 'o' встречается чаще")
else:
print("Буквы 'e' и 'o' встречаются одинаковое количество раз")