from turtle import * a = int(input()) b = a + 20 for i in range(2): fd(a) right(90) fd(b) right(90)