Diagnostic Test '16 Level 1 P1 - StarMath

View as PDF

Submit solution

Points: 3
Time limit: 1.0s
Memory limit: 16M

Authors:
Problem type
Diagnostic Test 2016 Level 1

The members of team starfax learned math in an unconventional way such that they were unable to use calculators. Instead of addition, subtraction, multiplication, and division, with the numbers a and b, the equation a$b equals a2b2, the equation a@b equals (b×a)/(2a3), and the equation a#b equals (a×b)(b14). Due to this being so hard without calculators, the students requested you to make a program for them. Given the integers a and b (1000ab1000), and an operand o ($, @, or #), calculate the answer to the provided question. Output the string The equation [a] [o] [b] is equal to [answer]. The answer will always be an integer after calculations.

Sample Input 1

Copy
3
$
7

Sample Output 1

Copy
The equation 3 $ 7 is equal to -40.

Sample Input 2

Copy
4
#
0

Sample Output 2

Copy
The equation 4 # 0 is equal to 0.

Comments

There are no comments at the moment.