Reverse CipherThis is a simple cipher that takes a message and merely reverses the characters. Many people can actually read reversed text, and this cipher is really easy to break as you merely re-run the cipher on the jumble and it untangles.
BEGIN
INPUT message
UPCASE message
INIT result = ''
FOR each character in message
result = character + result
ENDFOR
OUTPUT result
END