Extend the program to make the computer type as follows.
2*3+5 = 11
2*(3+5) = 16
2+3*5 = 17
20-3*5 = 5
(20-3)*5 = 85
To get the first line in the output, we can use commands in the following manner.
sentence_rayu("2*3+5 = ");
number_rayu(2*3+5);
enter_kottu();
Once you got the expected output. Submit your code.
When you submit it will prompt you to view test cases.
Click Run tests
button.
Once tests pass click on Submit
.