With a partner, write the following console (text-based) program: 1. the program needs to make two random numbers less than 100 2. print them out 3. ask the user to calculate what their sum is 4. if the answer is not correct, use a while loop to go back to step 1 and come up with 2 new numbers 5. if the answer is correct, print out "well done" and let the program end. Random numbers: If we haven't already done random numbers in class you can use this: The following line will make a random integer that is between 0 and 100 (ie from 1 to 99) int r = (int)(Math.random() * 99) + 1; //I'm calling the variable r, but you could call it rand, or num1 or secret ... depending what it's used for in your program.