import java.io.*; import java.util.*; import java.awt.geom.*; /** * Solution to Party Games * * @author vanb */ public class partygames { public Scanner sc; public PrintStream ps; /** * Driver. * @throws Exception */ public void doit() throws Exception { sc = new Scanner( System.in ); //new File( "partygames.in" ) ); ps = System.out; //new PrintStream( new FileOutputStream( "partygames.out" ) ); for(;;) { int n = sc.nextInt(); if( n==0 ) break; // Read the names, convert to all upper case String names[] = new String[n]; for( int i=0; i=a, then the last // letter must be one more than the corresponding letter // of a. There are two exceptions: If this letter is Z, then // there is no next letter. And, if it's the last letter of a, // then we can just use a as the result and we don't need to increment it. if( ch!='Z' && i= 0 && result.compareTo( b ) < 0 ) break; // Otherwise, move on to the next. c += a.charAt(i); } ps.println( result ); } } /** * @param args */ public static void main( String[] args ) throws Exception { new partygames().doit(); // Random random = new Random(); // // char alphabet[] = "QWERTYUIOPASDFGHJKLZXCVBNM".toCharArray(); // System.out.println( 1000 ); // HashSet seen = new HashSet(); // for( int i=0; i<1000; i++ ) // { // String name = ""; // do // { // int k = random.nextInt(30)+1; // name = ""; // for( int j=0; j