Answer:
Explanation:
Firstly import Scanner and Random libraries which will be used to get input number and to generate random value (Line 1 -2).
Next declare all the necessary variables as given in pseudo-code (Line 7 - 8)
Then use nextInt method to randomly generate integer and assign them to rand1 and rand 2, respectively (Line 10 - 11). Next, sum up the two random values and assign it to variable ans (Line 12).
Display the two random numbers (Line 14) and create a Scanner object and prompt user input for answer (Line 16- 18).
Create an if-else condition to check if the input answer (ans) is equal to the real answer (sum) and display the appropriate message accordingly (Line 20 - 24).