from turtle import*


for i in range(2):
	
	color('black')
	forward(120)
	left(90)
	color('red')
	forward(80)
	left(90)

n=input("")
