Код: Выделить всё
a = int(input('Enter number of a :- '))
b = int(input('Enter number of b :- '))
c = int(input('Enter number of c :- '))
if a>b or a>c :
print(a)
elif b>a or b>c:
print(b)
elif c>a or c>b:
print(c)
Подробнее здесь: https://stackoverflow.com/questions/660 ... ython-code
Мобильная версия