REM Multiplication Table from 1 to 12
FOR i = 1 TO 12
FOR j = 1 TO 12
PRINT i; " x "; j; " = "; i * j
NEXT j
NEXT i
In this program, we use two nested FOR loops to iterate through the numbers from 1 to 12. The outer loop iterates through the first number (i), and the inner loop iterates through the second number (j). For each pair of numbers (i, j), we print the product of i and j using the PRINT statement.