

Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 点
問題文
すぬけ君は、AtCoder Contest という名前のコンテストを開こうとしています。 ここで、 は長さ 以上の文字列であり、 文字目は英大文字、 文字目以降は英小文字です。
すぬけ君は、このコンテストの略称を AC に決めました。 ここで、 は の先頭の英大文字です。
コンテストの名前が与えられるので、コンテストの略称を出力してください。
制約
- の長さは 以上 以下である。
- の 文字目は英大文字である。
- の 文字目以降は英小文字である。
入力
入力は以下の形式で標準入力から与えられる。
AtCoder Contest
出力
コンテストの略称を出力せよ。
入力例 1Copy
AtCoder Beginner Contest
出力例 1Copy
ABC
今あなたが参加しているコンテストです。
入力例 2Copy
AtCoder Snuke Contest
出力例 2Copy
ASC
このコンテストは存在しません。
入力例 3Copy
AtCoder X Contest
出力例 3Copy
AXC
Score : points
Problem Statement
Snuke is going to open a contest named "AtCoder Contest". Here, is a string of length 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 "AC". Here, is the uppercase English letter at the beginning of .
Given the name of the contest, print the abbreviation of the name.
Constraints
- The length of is between and , inclusive.
- The first character in is an uppercase English letter.
- The second and subsequent characters in are lowercase English letters.
Input
The input is given from Standard Input in the following format:
AtCoder Contest
Output
Print the abbreviation of the name of the contest.
Sample Input 1Copy
AtCoder Beginner Contest
Sample Output 1Copy
ABC
The contest in which you are participating now.
Sample Input 2Copy
AtCoder Snuke Contest
Sample Output 2Copy
ASC
This contest does not actually exist.
Sample Input 3Copy
AtCoder X Contest
Sample Output 3Copy
AXC