#abc102a. [abc102_a]Multiple of 2 and N
[abc102_a]Multiple of 2 and N
Problem Statement
You are given a positive integer . Find the minimum positive integer divisible by both and .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum positive integer divisible by both and .
Sample Input 1
3
Sample Output 1
6
is divisible by both and . Also, there is no positive integer less than that is divisible by both and . Thus, the answer is .
Sample Input 2
10
Sample Output 2
10
Sample Input 3
999999999
Sample Output 3
1999999998