x, y, z = map(int, input().split()) if y < x and y < z: x, y = y, x elif z < x and z < y: x, z = z, x if y > x and y > z: y, z = z, y print(x, y, z)