HARD DO OTHER PROBLEM FIRST
This program implements a simple integer calculator.
The input is a valid arithmetic expression on a single line.
The expression contains integers (possibly negative), operators + - * /.
All tokens are separated by spaces. Example:
2 + 3 * 4 * -9
A single line consisting of integers and operators + - * /, separated by spaces.
The expression is always guaranteed to be valid.
Output exactly one integer: the result of the expression.
The final computed answer is guaranteed to be an integer value.
Ensure that the output formatting matches exactly.