Allen Chen

Generation

fix invalid codeSun, 02 Apr 2023

for i in range(1, 20): for j in range(1, 20): print(i * j)

for i in range(1, 20): for j in range(1, 20): if j > i: print(i * j)

Want to kickstart your project?Use the new AI Studio to create your code