ROT13 (rotate by 13 places) is a simple letter substitution cipher that is an instance of a Caesar cipher developed in ancient Rome and used by Julius Caesar, who used it in his private correspondence. ROT13 replaces a letter with the letter 13 letters after it in the alphabet. The following table demonstrates the translation in ROT13:
A B C D E F G H I J K L M
N O P Q R S T U V W X Y Z
Thus, the translation of the word JULIUS using ROT13 would be WHYVHF. Write a C++ program that asks the user to enter a string using the keyboard. Then, translate the input by ROT13 and print it in the output (40 points).