def porzadkuj(s): return sorted(list(set(s.split()))) print(' '.join(porzadkuj('raz dwa trzy raz piec')))