You are given an arithmetic expression
Constraints
In a batch of tests worth 1 mark, the answer is always True
.
In a potentially disjoint batch of tests worth 1 mark, the answer is always False
.
Input Specification
The first line contains a single line of the form a + b = c
, where each of a
, b
, and c
are positive digits.
Output Specification
If the statement is true, print True
on a single line.
Otherwise, print False
on a single line.
Sample Input 1
Copy
1 + 1 = 2
Sample Output 1
Copy
True
Sample Input 2
Copy
1 + 1 = 3
Sample Output 2
Copy
False
Comments