Create a function that takes a string and shifts the letters to the right by an amount n but not the whitespace.
shift_letters("Boom", 2) ➞ "omBo"
shift_letters("This is a test", 4) ➞ "test Th i sisa"
shift_letters("A B C D E F G H", 5) ➞ "D E F G H A B C"
n can be larger than the total number of letters.