import random

words=['test', 'word', 'lazy', 'help', 'verb', 'haha']
random.shuffle(words)
print(' '.join(words))