# your code goes here
elements = map(int, input().split())
my_list = [e for e in elements if e >= 0]
my_list.sort()
print(my_list)
