import javax.swing.JOptionPane;
public class Addition {
public static void main( String args[] )
{
String firstinput;
String secondinput
int input1;
int input2;
int div=0;
firstinput= JOptionPane.showInputDialog( "Enter first integer" );
secondinput =
JOptionPane.showInputDialog( "Enter second integer" );
input1 = Integer.parseInt( firstinput);
input2 = Integer.parseInt( secondinput);
do {
input1= input1 - input2
div=div+1
}
while ( input1=>0);
System.out.println( "input1");
System.out.println( "div");
} // end method main
} // end class Addition


