public static void Main(String[] args)
string InputString = Console.ReadLine();
char[] InputStringAsCharArr = new char[InputString.Length];
Console.WriteLine(InputStringAsCharArr[2]);
public static void Decrypt(string EncryptedText){
Console.WriteLine(Decryptor.A.ID);
private Decryptor(string value, int id) { Value = value; ID = id; }
public string Value { get; private set; }
public int ID { get; private set; }
public static Decryptor Q { get { return new Decryptor("A", 1); } }
public static Decryptor W { get { return new Decryptor("B", 2); } }
public static Decryptor E { get { return new Decryptor("C", 3); } }
public static Decryptor R { get { return new Decryptor("D", 4); } }
public static Decryptor T { get { return new Decryptor("E", 5); } }
public static Decryptor Y { get { return new Decryptor("F", 6); } }
public static Decryptor U { get { return new Decryptor("G", 7); } }
public static Decryptor I { get { return new Decryptor("H", 8); } }
public static Decryptor O { get { return new Decryptor("I", 9); } }
public static Decryptor P { get { return new Decryptor("J", 10); } }
public static Decryptor A { get { return new Decryptor("K", 11); } }
public static Decryptor S { get { return new Decryptor("L", 12); } }
public static Decryptor D { get { return new Decryptor("M", 13); } }
public static Decryptor F { get { return new Decryptor("N", 14); } }
public static Decryptor G { get { return new Decryptor("O", 15); } }
public static Decryptor H { get { return new Decryptor("P", 16); } }
public static Decryptor J { get { return new Decryptor("Q", 17); } }
public static Decryptor K { get { return new Decryptor("R", 18); } }
public static Decryptor L { get { return new Decryptor("S", 19); } }
public static Decryptor Z { get { return new Decryptor("T", 20); } }
public static Decryptor X { get { return new Decryptor("U", 21); } }
public static Decryptor C { get { return new Decryptor("V", 22); } }
public static Decryptor V { get { return new Decryptor("W", 23); } }
public static Decryptor B { get { return new Decryptor("X", 24); } }
public static Decryptor N { get { return new Decryptor("Y", 25); } }
public static Decryptor M { get { return new Decryptor("Z", 26); } }