def f(x):
    return -0.3*x*x + 2*x + 1

def coef(a):
    return ( f(a+10**(-10)) - f(a) ) / 10**(-10)
