/**
* @file
* @brief [Atbash Cipher](https://en.wikipedia.org/wiki/Atbash) implementation
* @details The Atbash cipher is a subsitution cipher where the letters of the
* alphabet are in reverse. For example, A is replaced with Z, B is replaced
* with Y, etc.
*
* ### Algorithm
* The algorithm takes a string, and looks up the corresponding reversed letter
* for each letter in the word and replaces it. Spaces are ignored and case is
* preserved.
*
* @author [Focusucof](https://github.com/Focusucof)
*/
#include /// for assert
#include /// for IO operations
#include