from math import*
y=0
while 2<3:
	x=int(input("entrez un nombre"))
	def f1(x):
		y=7*x**2-3*x+2
		return y

	print(f1(x))
