list=[1,2,4]
list.append(1)
list.append(3)
list.append(4)
list.sort()
print(list)

Comments (2)