print("请输入3个数:")
x=int(input("x= "))
y=int(input("y= "))
z=int(input("z= "))
temp=0
if x>y:
temp=y
y=x
x=temp
if x>z:
temp=z
z=x
If y>z:
z=y
y=temp
print(x, y, z)
微信扫码预览、分享更方便