a,b=input().split() a,b=int(a),int(b) if a>b: a,b==b,a print(a,b)
------Input------ 71 1 ------Answer----- 1 71 ------Your output----- 71 1