7 lines
106 B
Plaintext
7 lines
106 B
Plaintext
func main[] : i64
|
|
out := 1
|
|
|
|
for i in 1..21
|
|
out = math.lcm(out, i)
|
|
io.println_i64(out)
|