Problem2191--Multiple of 2 and N (ABC102A)

2191: Multiple of 2 and N (ABC102A)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Problem Statement

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

Input

Input is given from Standard Input in the following format:
N



Output

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

Sample Input Copy

3

Sample Output Copy

6

HINT

6 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.

Source/Category