4 lines
73 B
Ruby
4 lines
73 B
Ruby
(0..3).each do |m|
|
|
(0..6).each { |n| print ack(m, n), ' ' }
|
|
puts
|
|
end
|