if.lua 158 B

12345678
  1. for a=1,15,1 do
  2. b=math.random(10);c=math.random(10)
  3. if (b>c) then
  4. print(tostring(b)..","..tostring(c)..": b is greater than c")
  5. end
  6. end