﻿from math import *

x=-1.5
while x<=1.5    :
    if 8*x**3+14*x**2-2*x-3.5==0:
        print(x)
    x=x+0.25


