#AT1241. A - Multiple of 2 and N

A - Multiple of 2 and N

A - Multiple of 2 and N

Score : $100$ points

Problem Statement

You are given a positive integer $N$. Find the minimum positive integer divisible by both $2$ and $N$.

Constraints

  • $1 \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 $2$ and $N$.


3
6

$6$ is divisible by both $2$ and $3$. Also, there is no positive integer less than $6$ that is divisible by both $2$ and $3$. Thus, the answer is $6$.


10
10

999999999
1999999998