Problem A
Checking For Correctness
In mathematics, it’s always important to check your work. Usually, this means making some sort of quick calculation (either in your head, or on paper) to ensure that the answers you find make sense.
Your colleague has written an implementation of a general arithmetic system which supports arbitrarily large numbers and operations like addition, multiplication, exponentiation. She has asked you to write an independent program that checks that the answers her software gives make sense (though they may not be perfectly correct!).
Write a program that checks the correctness of simple arithmetic statements of the form:
a + b a * b a ^ b
That is, addition, multiplication, and exponentiation. The
output of your program is the value of the smallest-order
Input
Input consists of a sequence of up to
Output
For each expression, print the last
Sample Input 1 | Sample Output 1 |
---|---|
4231 + 13402 4231 * 13402 4231 ^ 13402 4321 ^ 7 |
7633 3862 3361 641 |