Result Size: 625 x 571
demo_ref_sorted2.py:
x
 
a = (1, 11, 2)
x = sorted(a)
print(x)
C:\Users\My Name>python demo_sorted2.py
[1, 2, 11]