


public class exercicio0603b
{
		String Nome = "ANDRE APARECIDO DA SILVA";
		int Contador = 0;
    	public exercicio0603b()
    	{
    			while (Contador < 100)
    			{
    					System.out.println( Contador+"-"+ Nome  );
    					Contador = Contador +1;
    			}

   		}
   		public static void main (String args [])
   		{
   				new exercicio0603b();
   		}
}