(представлено в одном коде,они обозначены через #)
a = int(input())
b = int(input())
c = int(input())
max = max(a,b,c) #1
print(max)
if a>b: #2
if a>c:
print(a)
else:
print(c)
if b>c:
print(b)
(представлено в одном коде,они обозначены через #)
a = int(input())
b = int(input())
c = int(input())
max = max(a,b,c) #1
print(max)
if a>b: #2
if a>c:
print(a)
else:
print(c)
else:
if b>c:
print(b)
else:
print(c)