문제
Great scientific discoveries are often named by the last names of scientists that made them. For example, the most popular asymmetric cryptography system, RSA was discovered by Rivest, Shamir and Adleman. Another notable example is the Knuth- Morris-Pratt algorithm, named by Knuth, Morris and Pratt. Scientific papers reference earlier works a lot and it's not uncommon for one document to use two different naming conventions: the short variation (e.g. KMP) using only the first letters of authors last names and the long variation (e.g. Knuth-Morris-Pratt) using complete last names separated by hyphens. We find mixing two conventions in one paper to be aesthetically unpleasing and would like you to write a program that will transform long variations into short.
입력
The first and only line of input will contain at most 100 characters, uppercase and lowercase letters of the English alphabet and hyphen ('-' ASCII 45). The first character will always be an uppercase letter. Hyphens will always be followed by an uppercase letter. All other characters will be lowercase letters.
출력
The first and only line of output should contain the appropriate short variation.
예제 입력 1
Knuth-Morris-Pratt
예제 출력 1
KMP
예제 입력 2
Mirko-Slavko
예제 출력 2
MS
예제 입력 3
Pasko-Patak
예제 출력 3
PP
코드를 제출하려면 로그인이 필요합니다.
로그인