/*
entwickelt von:
Christian Vogt
*/

import javax.swing.*;

public class uebung07a
{

	public static void main (String args[])
    {
//	JTextField[] feld = {new JTextField(), new JTextField()};
//	Object[] msg = {"Eingabe_1", feld[0], "Eingabe_2", feld[1]};
//        (new JOptionPane(msg)).createDialog(null, "Uebung07a").setVisible(true);
	

	int p_1 = Integer.parseInt(args[0]);
	int p_2 = Integer.parseInt(args[1]);
	
//        JOptionPane.showMessageDialog (null, feld[0].getText(), "Ausgabe_1", JOptionPane.PLAIN_MESSAGE);
//        JOptionPane.showMessageDialog (null, feld[1].getText(), "Ausgabe_2", JOptionPane.PLAIN_MESSAGE);

	System.out.println("\nParameter 1: " + p_1);
	System.out.println("Parameter 1: " + p_2+"\n");

	for(int i = 0; p_1 <= p_2; p_1++)
	{

// Zum lauffähigen Betrieb bitte folgenden drei Zeilen herausnehmen!!!

//		String ausgabe = Integer.toHexString(p_1).toUpperCase();
//		ausgabe = ("\u"+ausgabe);
//		System.out.println(ausgabe);


		char ausgabe = (char) p_1;
		System.out.println("Ausgabe: "+ausgabe);
		System.out.println("Ausgabe: "+p_1 +"\n");


	}

		System.exit(0);
    }
}