import javax.swing.JOptionPane;

public class exercicio0603b1
{
		String Nome =  JOptionPane.showInputDialog("Digite seu nome");
		int Contador = 0;
    	public exercicio0603b1()
    	{
    			if(Nome.equals(""))
    			{Nome = "VOCE NÃO DIGITOU UM VALOR VÁLIDO";}
    			while (Contador < 100)
    			{
    					System.out.println( Contador+"-"+ Nome  );
    					Contador = Contador +1;
    			}

   		}
   		public static void main (String args [])
   		{
   				new exercicio0603b1();
   		}
}