Description: The Caesar method that shifts each letter of a given sentence by a fixed distance to replace it with another letter is called the Caesar cipher. For example, shifting "AB" by 1 would result in "BC", and by 3 would result in "DE". Shifting "z" by 1 would result in "a". Given a string s and a distance n, please complete the function called "solution" to create an encrypted text of s s..