Write a function shiftN(someText, n). someText is a string consisting of only uppercase character, n is an integer. The function should return the same text, but with each character shifted up n positions in the alphabet, wrapping around after "Z"
# shiftN("ABC", 25) -> "ZAB"
# shiftN("ABC", 26) -> "ABC"
# shiftN("KZNEXFGURFCBG", 13) -> "XMARKSTHESPOT"