a = int(input())
b = int(input())
c = int(input())
d = int(input())
if a > b and a > c and a > d:
print(a, "больше")
elif b > a and b > c and c > d:
print(b, "больше")
elif c > a and c > b and c > d:
print(c, "больше")
else:
if d > a and d > b and d > c:
print(d, "больше")
Объяснение:
a = int(input())
b = int(input())
c = int(input())
d = int(input())
if a > b and a > c and a > d:
print(a, "больше")
elif b > a and b > c and c > d:
print(b, "больше")
elif c > a and c > b and c > d:
print(c, "больше")
else:
if d > a and d > b and d > c:
print(d, "больше")
Объяснение: