i don't know why that appears when i try to run. i tried to fix but i can't. is there any errors?
import math
print(" Hello....\n This program will ask you to enter 3 numbers \n (a, b and c) that will be used in the quadratic formula to \n calculate the roots of an equation ")
a=float(input("Enter a Value for a: "))
while(a <= 0):
print(" Please enter a number that is larger than 0.") <br/>
a=float(input("Please enter a value for A: "))
b=float(input("Enter a Value for b: "))
while(b <= a): <br/>
print(" Please enter a value that is larger than A.") <br/>
b=float(input("Enter a value for B: "))
c=float(input("Enter a Value for C: "))
root1 = float(-b + math.sqrt(b * b - 4 * a * c)/(2 * a)) <br/>
root2 = float(-b - math.sqrt(b * b - 4 * a * c)/(2 * a))
print("Root 1 is " , root1)<br/>
print("Root 2 is " , root2)<br/>
input("prompt: ")
` in what's supposed to be Python code? You may find the answers to this question helpful: [Asking the user for input until they give a valid response](http://stackoverflow.com/q/23294658/4014959). – PM 2Ring Jan 31 '16 at 07:46