class Solution: def judgeSolutions(self , a: int, b: int, c: int) -> bool: # write code here return True if b**2-4*a*c>=0 else False