题目:输入三个整数x,y,z,请把这三个数由小到大输出
#the first code
x=int(input('please input x\n'))
y=int(input('please input y\n'))
z=int(input('please input z\n'))
if x
else:
#the second
#python 中自带了排序函数sort(),构造一个序列即可自动排序
l = []
for i in range(3):
l.sort()
print l