a, b, c = int(input('a = ')), int(input('b = ')), int(input('c = '))
print('Да' if a == b and b == c else 'Нет')
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
a, b, c = int(input('a = ')), int(input('b = ')), int(input('c = '))
print('Да' if a == b and b == c else 'Нет')