from turtle import * def square(side_length): motions = [1,1,1,1] for motion in motions: forward(side_length) right(90) sizes = [20, 40, 60, 80, 100] for size in sizes: square(size) input()