Лучший и лайк не забудь
Объяснение:
a, b, c = int(input()), int(input()), int(input())
if a > b:
print(a) if a > c else print(c)
else:
print(b) if b > c else print(c)
Лучший и лайк не забудь
Объяснение:
a, b, c = int(input()), int(input()), int(input())
if a > b:
print(a) if a > c else print(c)
else:
print(b) if b > c else print(c)