What is sorting?
Stablility
Common Algorithms
a = [int(i) for i in input().split()] b = a a = sorted(a) b = b.sort() print(a) print(b)
Exercise
Thank you!