#abc048a. [abc048_a]AtCoder *** Contest

[abc048_a]AtCoder *** Contest

Problem Statement

Snuke is going to open a contest named "AtCoder ss Contest". Here, ss is a string of length 11 or greater, where the first character is an uppercase English letter, and the second and subsequent characters are lowercase English letters.

Snuke has decided to abbreviate the name of the contest as "AxxC". Here, xx is the uppercase English letter at the beginning of ss.

Given the name of the contest, print the abbreviation of the name.

Constraints

  • The length of ss is between 11 and 100100, inclusive.
  • The first character in ss is an uppercase English letter.
  • The second and subsequent characters in ss are lowercase English letters.

Input

The input is given from Standard Input in the following format:

AtCoder ss Contest

Output

Print the abbreviation of the name of the contest.


Sample Input 1

AtCoder Beginner Contest

Sample Output 1

ABC

The contest in which you are participating now.


Sample Input 2

AtCoder Snuke Contest

Sample Output 2

ASC

This contest does not actually exist.


Sample Input 3

AtCoder X Contest

Sample Output 3

AXC