fruits = ['cherry', 'apple', 'pear', 'kiwi', 'watermelon']

a, b, c = fruits

print(a)
print(b)
print(c)