from sympy import Symbol, solve
a, b, c = map(int, input().split(' '))
x = Symbol('x')
roots = solve(a * x * x + b * x + c, x, dict=True)
print(roots)
