for i = 1:10
  for j = 1:10
    if i==j
      println(i,", ",j)
    end
  end
end

Reply via email to