Write a function that receives a string. It should return True if the string ends in 'ly' (lowercase only).
Examples:
endsInLy("suddenly") returns TrueendsInLy("SUDDENLY") returns FalseendsInLy("suddenly I saw the rescue train") returns FalseendsInLy("well") returns False©2017 Graham Mitchell