Create a function which returns the next letters alphabetically in a given string. If the last letter is a "Z", change the rest of the letters accordingly.
next_letters("A") ➞ "B"
next_letters("ABC") ➞ "ABD"
next_letters("Z") ➞ "AA"
next_letters("CAZ") ➞ "CBA"
next_letters("") ➞ "A"