A - Multiple of 2 and N
Editorial
/
Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 100 点
問題文
正整数 N が与えられます。 2 と N のどちらでも割り切れる最小の正整数を求めてください。
制約
- 1 \leq N \leq 10^9
- 入力はすべて整数である。
入力
入力は以下の形式で標準入力から与えられる。
N
出力
2 と N のどちらでも割り切れる最小の正整数を出力せよ。
入力例 1
3
出力例 1
6
6 は 2 と 3 のどちらでも割り切れる数です。 また、6 未満の正整数であって、2 と 3 のどちらでも割り切れるような数はありません。 よって、答えは 6 です。
入力例 2
10
出力例 2
10
入力例 3
999999999
出力例 3
1999999998
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:
N
Output
Print the minimum positive integer divisible by both 2 and N.
Sample Input 1
3
Sample Output 1
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.
Sample Input 2
10
Sample Output 2
10
Sample Input 3
999999999
Sample Output 3
1999999998