#include<iostream>
#include<cstring>
using namespace std;
int main()
{
const char source[][10]={"vaporeon", "jolteon", "flareon", "espeon", "umbreon", "leafeon", "glaceon", "sylveon"};
char in[10];
int n,len;
bool flag=false;
cin>>len>>in;
for(int i=0;i<8;++i)
{
if(strlen(source)==len)
{
bool match=true;
for(int j=0;j<len;++j)
{
if(!(in[j]=='.'||in[j]==source[j])){
match=false;
break;
}
}
if(match){
cout<<source<<endl;
break;
}
}
}
}
| 歡迎光臨 竹園論壇 (http://forum.tfcis.org/) | Powered by Discuz! X3.2 |