import java.util.Random;

class Chris
{
	public static void main(String args[])
	{
		Random random = new Random();
		
		String str1[] = { "Unionism", "Cuckoldry", "Believability", "Piousness",
			"Contentiousness", "Chubbiness", "Afterglow", "Elicitation",
			"Candidature", "Expediency", "Fetish" };
		String str2[] = { "shrubbery", "electrodynamics", "flattery", "premium",
			"heading", "ring", "trust", "window", 
			"seasoning", "gilding", "euphemism" };
		
		int choice1;
		int choice2;
		
		while(true)
		{
			if(random.nextInt(1000)%30==0)
			{
				choice1 = random.nextInt(str1.length);
				choice2 = random.nextInt(str2.length);
		
				System.out.println("\"" + str1[choice1] + "\"?  Is that some type of " + str2[choice2] + "?");
			}
			
			try
			{
				Thread.sleep( 750 );
			}
			catch ( InterruptedException e )
			{
				System.out.println( "awakened prematurely" );
			}
		}
		
	}
}