Score : $100$ points
You are given a positive integer $N$. Find the minimum positive integer divisible by both $2$ and $N$.
Input is given from Standard Input in the following format:
$N$
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