/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		int master = 0;
		
		label:
		while (true) {
		    for (int i = 0; i < 100; i++) {
		    	if (++master > 200) {
		    		System.exit(0); // Be nice to ideone
		    	}
		        System.out.println("i = " + i);
		        if (i == 99) {
		            continue label;
		        }
		    }
		}
	}
}