i = 1 while i <= 100: if i % 2 == 1: print(str(i) + " Lion") else: print(str(i) + " Unicorn") i = i + 1