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