#P10125. 「Daily OI Round 3」Simple

「Daily OI Round 3」Simple

Background

This is an easy problem.

Problem Description

An account of one of Acoipp's software is called Svpoll, and the accounts of this software and Luogu accounts are case-insensitive. For example, SVPOLl\texttt{SVPOLl} and svPOLL\texttt{svPOLL} are equivalent, and aCoIPp\texttt{aCoIPp} and Acoipp\texttt{Acoipp} are equivalent.

Now you want to determine whether a given account name is equivalent to Acoipp\texttt{Acoipp}, equivalent to Svpoll\texttt{Svpoll}, or equivalent to neither of them.

Input Format

One line with one string, representing the account name.

Output Format

One line with one string. If the input string is equivalent to Acoipp\texttt{Acoipp}, output Luogu\texttt{Luogu}. If the input string is equivalent to Svpoll\texttt{Svpoll}, output Genshin\texttt{Genshin}. If the input string is equivalent to neither of them, output Boring\texttt{Boring}.

SVPOLL
Genshin
ACoiPP
Luogu
RECOLL
Boring

Hint

Sample Explanation #1

Because the comparison is case-insensitive, V\texttt{V}, P\texttt{P}, O\texttt{O}, and L\texttt{L} in SVPOLL\texttt{SVPOLL} are equivalent to v\texttt{v}, p\texttt{p}, o\texttt{o}, and l\texttt{l} respectively, so SVPOLL\texttt{SVPOLL} is equivalent to Svpoll\texttt{Svpoll}.

Constraints

Let S|S| be the string length. For all testdata, it is guaranteed that S=6|S| = 6, and the input string contains only uppercase and lowercase English letters.

Translated by ChatGPT 5