T9N1 Driver
T9N1 Driver
*;
while (!isValid) {
try
{
x1=input.nextInt();
x2=input.nextInt();
isValid=true;
}
catch(InputMismatchException e)
{
System.out.print("Wrong Input! Please input again :");
input.nextLine();
}
}
int result = x1 + x2;
System.out.println("The result is "+ result);
}
}