fork download
  1. # your code goes here
  2. a = input()
  3. x = a.replace(' ', '')
  4. print(sorted(x))
  5.  
  6. x = int(x)
  7. print(x)
Success #stdin #stdout 0.01s 27704KB
stdin
3 2
stdout
['2', '3']
32