from turtle import*

a=20
x=0
y=0


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

n=input("")
