grid = [
    ["😀", "😎", "🐶", "🍎"],   
    ["🌸", "⭐", "🚗", "🏀"],
    ["🐱", "🍕", "🎵", "🌈"],
    ["🧸", "✈️", "⚽", "🎮"],
    ["🍩", "📚", "🐟", "🌙"]
]






# [Problem 857]
# Write a program that takes the number of rows and columns as input
# and prints a multiplication table where each row i contains multiples of i.
# input
# 3 4
# output
# 1 2 3 4
# 2 4 6 8
# 3 6 9 12





Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: