9 lines
127 B
Plaintext
9 lines
127 B
Plaintext
include "std/io.zr"
|
|
|
|
func main[] : i64
|
|
out := 1
|
|
|
|
for i in 1..21
|
|
out = math.lcm(out, i)
|
|
io.println_i64(out)
|