from turtle import*

a=15
x=0
y=0


for i in range(40):
	
	up()
	goto(x,y)
	down()
	circle(a)
	a=a+5
	y=y+5

n=input("")
