bool judgeSolutions(int a, int b, int c ) { scanf("%d %d %d",&a,&b,&c); if((b*b-4*a*c)>=0) return true; else return false; // write code here }