a = int(input("1: "))
b = int(input("2: "))
c = int(input("3: "))
if a > b and a > c:
print(a)
elif b > a and b > c:
print(b)
elif c > b and c > a:
print(c)
else:
print("Они равны")
Выводит наибольшее число
a = int(input("1: "))
b = int(input("2: "))
c = int(input("3: "))
if a > b and a > c:
print(a)
elif b > a and b > c:
print(b)
elif c > b and c > a:
print(c)
else:
print("Они равны")
Выводит наибольшее число