#223. sumDouble

sumDouble

Background

Description

Given two int values, return their sum. Unless the two values are the same, then return double their sum.

Format

Input

Output

Samples

1 2
3
3 2
5
2 2
8

Limitation

1s, 1024KiB for each test case.