#130. teenSum
teenSum
Background
Description
Given 2 ints, a and b, return their sum. However, "teen" values in the range 13..19 inclusive, are extra lucky. So if either value is a teen, just return 19.
Format
Input
Output
Samples
3 4
7
10 13
19
13 2
19
Limitation
1s, 1024KiB for each test case.