mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
10 lines
173 B
Python
10 lines
173 B
Python
def problem_p03307(input_data):
|
|
import fractions
|
|
|
|
def lcm(x, y):
|
|
|
|
return (x * y) // fractions.gcd(x, y)
|
|
|
|
N = int(eval(input_data))
|
|
|
|
return lcm(N, 2)
|