3.py 290 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 x=int(input("x=")) y=int(input("y=")) z=int(input("z=")) if x>=y and y>=z: print(x,y,z) elif x>=z and y<=z: print(x,z,y) elif y>=x and x>=z: print(y,x,z) elif y>=z and z>=x: print(y,z,x) elif z>=x and x>=y: print(z,x,y) elif z>=y and y>=x: print(z,y,x)