from turtle import*
from math import*

def point(x,y,pas):
	up()
	goto(x,y)
	down()
	forward(pas)
	
#paramètres ajustables:
echelle_x=5
echelle_y=0.5
pas=0.2
x=-20
while x<20:
	#fonction à tracer :
	y=x**2-x+5
	x=x+pas
	
	#affichage du point :
	point(x*echelle_x,y*echelle_y,1)
	
n=input()
