# What is the output of the following code 

i1_limit = int(input())

i1 = 1 
while i1 < i1_limit: 
    i2 = 3 
    while i2 <= 9:
        print(f"{i1} {i2}" , end=" ")
        i2 += 3 
    i1 += 10

Embed on website

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