Untitled

Anonymous
python
06/09/2021 10:49 AM
196 B
21
Indexable
a,b,c = int(input()), int(input()), int(input())

if a < b:
	a, b = b, a
if a < c:
	a, c = c, a
if b > c:
	b, c = c, b
print(a)
print(b)
print(c)
Editor is loading...