Integer
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Create class Integer
according to the next class diagram:
Given three integers a, b, c, calculate the value of expression (a * 7 + b - 2) * (a - c + 5).
interface MyNumber { public long getValue(); public MyInteger Add(long a); public MyInteger Add(MyInteger a); public MyInteger Minus(long a); public MyInteger Minus(MyInteger a); public MyInteger Multiply(long a); public MyInteger Multiply(MyInteger a); public MyInteger Divide(long a); public MyInteger Divide(MyInteger a); } class MyInteger implements MyNumber { private long n; MyInteger(long n){ ... } ... }
Input
One line contains three integers a, b, c no more than 10^9
by absolute value.
Output
Print the value of given expression.
Examples
Input #1
Answer #1
Submissions 14K
Acceptance rate 52%