a, b, c = input() d = b*b - 4ac if d > 0: print(+sqrt(d)-b/(2a)) print(-sqrt(d)-b/(2a)) else: print("No real roots")
This question is from an online python practice sample. I am new to learning python and also tried writing the same program in the code editor and it says no many syntax errors. Help!