Answer:
Explanation:
If the chosen programming language for this is Python and you only want the code to calculate the expression and print it then these are the following codes
a. print(5**3)
b. print((4+6) * (34 / 5))
Each one of these lines of code will calculate the arithmetic expressions and print the answer to the screen.