//Anamary Leal
//July 20, 2006
//Solves the fortune-telling problem: one's fortune is based on one's name.

import java.util.*;
import java.io.*;

public class fortune
{
	
	public static void main(String [] args) throws IOException
	{
		Scanner input = new Scanner(new File("fortune.in"));
		
		//read in the number of customers/names
		int numnames = input.nextInt(), tscore;
		String temps;
		
		//loop through & get the fortune per name
		for(int ct = 0; ct < numnames; ct++)
		{
			//scan in the name
			temps = input.next();
			
			//Calculate the score & output
			tscore = getScore(temps);			
			outputFortune(tscore);
		}
		
		
	}
	
	
	//The purpose of this function is, givne a name, calculate their score
	public static int getScore(String name)
	{
		int score = 0;
		
		//sets the first letter to be lowercase for simplicity
		name = name.toLowerCase();
		
		for(int cts = 0; cts < name.length(); cts++)
		{
			//Check if it's a vowel: a,e,i,o,u gets +1
			if(name.charAt(cts) == 'a' || name.charAt(cts) == 'e' || name.charAt(cts) == 'i' || name.charAt(cts) == 'o' || name.charAt(cts) == 'u')
			{
				score++;
			}
			//else, check if ti's a k, m, or s
			else if(name.charAt(cts) == 'k' || name.charAt(cts) == 'm' || name.charAt(cts) == 's')
			{
				score += 5;
			}
			
		}
		
		return score;		
	}
	
	
	//Thsi function gives the appropriate output given a score
	public static void outputFortune(int score)
	{
		//first condition: 0-3
		if(score < 3)
			System.out.println("Yes, another future slave for me!");
		//second: 3-4
		else if(score < 5)
			System.out.println("Fate has something unique for you..");
		//third: 5-11
		else if(score < 12)
			System.out.println("You will soon be meeting your worst enemy more often.");
		//fourth: 12-20
		else if(score < 21)
			System.out.println("No life-changing moments anytime soon.");
		//score is 21+
		else
			System.out.println("Hard to tell, gimme more payment to find out!");
	}
	
	
}