from turtle import*

a=40
x=0
y=0

for i in range(10):
	
	up()
	goto(x,y)
	down()
	circle(a)
	right(36)

n=input("")
