from turtle import * a = 150 b = a + 20 for i in range(2): fd(a) right(90) fd(b) right(90)