using System;
public class Program
{
public static void Main()
char h = 'o';
h++;
Console.WriteLine(h);
}