Ответ:
One = input()
Two = input()
Three = input()
if One == 'раз' and Two == 'два' and Three == 'три':
print('ГОРИ')
else:
print('НЕ ГОРИ')
Объяснение:
проверил,работает
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
One = input()
Two = input()
Three = input()
if One == 'раз' and Two == 'два' and Three == 'три':
print('ГОРИ')
else:
print('НЕ ГОРИ')
Объяснение:
проверил,работает
Пример 1
Ввод Вывод
один
два
три
ГОРИ
Пример 2
Ввод Вывод
один
2
3
b = input()
c = input()
if (a == 'раз') and (b == 'два') and (c == 'три') or (a == '1') and (b == '2') and (c == '3'):
print('ГОРИ')
else:
print('НЕ ГОРИ')