7 lines
194 B
Text
7 lines
194 B
Text
local int = require "int"
|
|
local fmt = require "fmt"
|
|
local xys = {{12, 18}, {-6, 14}, {35, 0}}
|
|
for xys as xy do
|
|
local [x, y] = xy
|
|
fmt.print("lcm(%2d, %2d) = %d", x, y, int.lcm(x, y))
|
|
end
|