To Draw AUDI logo

 import turtle as t

pos=30

t.pensize(4)

t.penup()

for x in range(4):

t.setpos(pos,30)

t.pendown()

t.circle(30)

pos+=35

t.penup()

pass

i=input("")