x=input('x=:') y=input('y=:') z=input('z=:') t=0 if(x>y): t=x x=y y=t if(x>z): t = x x = z z = t if(y>z): t = y y = z z = t print (x,y,z)