#120. sortaSum

sortaSum

Background

Description

Given 2 ints, a and b, return their sum. However, sums in the range 10..19 inclusive, are forbidden, so in that case just return 20.

Format

Input

Output

Samples

3 4
7
9 4
20
10 11
21

Limitation

1s, 1024KiB for each test case.