Kkung finds even speaking bothersome, so he wants to create an acronym that can stand in for the phrase he wants to say. The rules are as follows.
The phrase contains at least one word, and adjacent words are separated by exactly one space. The acronym is made by taking the first letter of each word. However, the following words are considered useless and are skipped.
i, pa, te, ni, niti, a, ali, nego, no, ili
As an exception, if one of these words appears as the first word of the phrase, it is considered important and must not be skipped.
The acronym must be printed using uppercase letters only. Write a program that creates the acronym for Kkung.
The input consists of exactly one line containing the phrase Kkung wants to say.
The phrase contains only lowercase English letters and spaces. Adjacent words are separated by exactly one space.
The maximum length of the phrase is 100.
Print the acronym that is created.