Limits 1s, 256 MB

React anything on this post. I will give you three names. And you have to comment about them without mentioning their names.

We all played this trendy game on Facebook once upon a time. Now, we will play this game again.

Participate in this contest. I will give you some names. And you have to print something about them without mentioning the name.

As you have already participated, I will give you some names and you have to print a line of strings about them without revealing their names. In other words, you can print anything about them but you can not mention the name, not even as a substring.

Input

The first line of the input is an integer, tt (1t1000)\ (1\le t\le 1000)- denoting the number of names that I will give you.

Next tt lines will contain a non-empty string denoting a name. The name will consist of Latin letters and will have at most 100100 characters.

Output

For each testcase, print a line containing something about the name within 1000010000 characters without mentioning the name, not even as a substring. To avoid inconsistency, you are allowed to print only Latin letters and whitespace.

Note that, names are case-insensitive and you should not print only whitespace(s) or blank string cause printing nothing is a violation of the game's rules.

Sample

InputOutput
4
Ri
rafi
sumaiya
sakib
sweet Girl
he is nerd
she is nerd
Osthir Balok

For the 44th test case, you can not print sakib osthir balok or saKibbai shera because these statements reveal the name sakib. But you can print boss player as it does not reveal the name.


Note

A string tt will be called a substring of ss if tt can be obtained by removing some (possibly zero or all) characters from ss from the beginning or from the end or both. For example, the list substrings of the string "apple" would be "apple", "appl", "pple", "app", "ple", "le", "a", "p", "l", "e", ""(empty string) . But “apl”, “pe”, “ep” are not substrings of “apple”.

Submit

Login to submit.

Statistics

61% Solution Ratio
FAHIM.ctgEarliest, 2w ago
anikpodderFastest, 0.0s
zahid147Lightest, 3.2 MB
B0r0_V41Shortest, 72B
Toph uses cookies. By continuing you agree to our Cookie Policy.