Drawing Trap

 from turtle import *

speed(3)

for x in range(40):

circle(x*5)

left(x)

pass

t=input()