public class Conv {
  public static void main(String args[]) {
    char c = args[0].charAt(0);
    System.out.println(c);
  }
}
