Algorithm


A. Eevee
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are solving the crossword problem K from IPSC 2014. You solved all the clues except for one: who does Eevee evolve into? You are not very into pokemons, but quick googling helped you find out, that Eevee can evolve into eight different pokemons: Vaporeon, Jolteon, Flareon, Espeon, Umbreon, Leafeon, Glaceon, and Sylveon.

You know the length of the word in the crossword, and you already know some letters. Designers of the crossword made sure that the answer is unambiguous, so you can assume that exactly one pokemon out of the 8 that Eevee evolves into fits the length and the letters given. Your task is to find it.

Input

First line contains an integer n (6 ≤ n ≤ 8) – the length of the string.

Next line contains a string consisting of n characters, each of which is either a lower case english letter (indicating a known letter) or a dot character (indicating an empty cell in the crossword).

Output

Print a name of the pokemon that Eevee can evolve into that matches the pattern in the input. Use lower case letters only to print the name (in particular, do not capitalize the first letter).

Examples
input
Copy
7
j......
output
Copy
jolteon
input
Copy
7
...feon
output
Copy
leafeon
input
Copy
7
.l.r.o.
output
Copy
flareon
Note

Here's a set of names in a form you can paste into your solution:

["vaporeon", "jolteon", "flareon", "espeon", "umbreon", "leafeon", "glaceon", "sylveon"]

{"vaporeon", "jolteon", "flareon", "espeon", "umbreon", "leafeon", "glaceon", "sylveon"}

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <stdio.h>
#include <string>

using namespace std;

int main() {
	int n;
	scanf("%d", &n);

	char s[9];
	scanf("%s", s);

	if(n == 6) {
		puts("espeon");
	}

	if(n == 7) {
		string ls[6] = {"jolteon", "flareon", "umbreon", "leafeon", "glaceon", "sylveon"};

		for(int i = 0; i < 6; ++i) {
			bool ok = true;
			for(int j = 0; j < 6; ++j)
				if(s[j] != '.' && s[j] != ls[i][j]) {
					ok = false;
					break;
				}
			if(ok) {
				puts(ls[i].c_str());
				break;
			}
		}
	}

	if(n == 8) {
		puts("vaporeon");
	}

	return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
7
j......

Output

x
+
cmd
jolteon
Advertisements

Demonstration


Codeforces Solution-Eevee-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+