from math import*
y=0
def f1(x):
	y=7*x**2-3*x+2
	return y

print(f1(10))
