from turtle import*

a= 10
for i in range(8):
	forward(a)
	left(90)
	forward(a)
	left(90)
	a = a + 10

n=input("")
