x, y, z = map(int, input().split())
num=[x,y,z]
num.sort()

for i in num:
    print(i,end=" ")