Write a function that returns the longest common ending between two strings.
longest_common_ending("multiplication", "ration") ➞ "ation"
longest_common_ending("potent", "tent") ➞ "tent"
longest_common_ending("skyscraper", "carnivore") ➞ ""
Return an empty string if there exists no common ending.