Your task is to read a file containing arithmetic instructions such as
3 + 4 4 - 10 7 * 11
Each instruction contains an integer, an operator (+, -, or *), and another integer.
Return an array list of the results. If there is any error, throw an IOException
.