x=input("x=")
y=input("y=")
z=input("z=")
if x>y:
    x,y=y,x
if x>z:
    x,z=z,x
if y>z:
    y,z=z,y
print(x,y,z)

 

相关文章:

  • 2022-12-23
  • 2021-11-14
  • 2022-12-23
  • 2021-11-23
  • 2022-02-21
  • 2022-02-11
  • 2021-12-06
  • 2021-12-03
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-15
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案