The word LOVE displays a perfect symmetry in the English alphabet: its letters are evenly distributed around the center.

mutual love
Love is mutual between the letters of the word LOVE.

We say the love between the letters of the word is mutual if this condition is met.

Assignment

Determine if the love between the letters of a word is mutual. This is done in the following way:

Example

>>> positions('LOVE')
(11, 14, 21, 4)
>>> positions('mutual')
(12, 20, 19, 20, 0, 11)

>>> ismutual((11, 14, 21, 4), 26)
True
>>> ismutual([12, 20, 19, 20, 0, 11], 26)
False

>>> mutual_love('LOVE')
True
>>> mutual_love('mutual')
False