using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukikoda { class Program { static void Main(string[] args) { string s = Console.ReadLine(); string[] c = { "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" }; string ans = ""; for (int i = 1; i <= s.Length; i++) { int a = Array.IndexOf(c, s[i - 1].ToString()); int b = a - i; while (b < 0) { b = b + 26; } ans += c[b]; } Console.WriteLine(ans); } } }