#274. makes10

makes10

Background

Description

Given 2 ints, a and b, return true if one if them is 10 or if their sum is 10.

Format

Input

Output

Samples

9 10
true
9 9
false
1 9
true

Limitation

1s, 1024KiB for each test case.