using static Crypt.CaesarCipher;
public class Program {
public static void Main() => Decode("", 0);
}
namespace Crypt {
public static class CaesarCipher {
public static string Decode(string text, byte key) => "";
public static string Encode(string text, byte key) => "";