#136. twoAsOne

twoAsOne

Background

Description

Given three ints, a b c, return true if it is possible to add two of the ints to get the third.

Format

Input

Output

Samples

1 2 3
true
3 1 2
true
3 2 2
false

Limitation

1s, 1024KiB for each test case.