#abc102a. [abc102_a]Multiple of 2 and N

[abc102_a]Multiple of 2 and N

Problem Statement

You are given a positive integer NN. Find the minimum positive integer divisible by both 22 and NN.

Constraints

  • 1leqNleq1091 \\leq N \\leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

Output

Print the minimum positive integer divisible by both 22 and NN.


Sample Input 1

3

Sample Output 1

6

66 is divisible by both 22 and 33. Also, there is no positive integer less than 66 that is divisible by both 22 and 33. Thus, the answer is 66.


Sample Input 2

10

Sample Output 2

10

Sample Input 3

999999999

Sample Output 3

1999999998