import javax.swing.JOptionPane;
public class Teste3
{
	public static void main(String args[])
	{
			String a;
			a = JOptionPane.showInputDialog("Digite um Valor");
			System.out.println("O número digitado foi: "+a);

			int c = 9;

			String s =""+ Integer.toString(c);
			System.out.println("str"+s + s + s + s + s);
			int i = new Integer (7);

	}
}