#pragma GCC optimize("Ofast") #include #define rep(i,n) for(int i=0;i>x[i]; #define ft first #define sc second #define pb push_back #define lb lower_bound #define ub upper_bound #define all(v) (v).begin(),(v).end() #define mod 1000000007 using namespace std; typedef long long ll; template using V=vector; using Graph = vector>; using P=pair; typedef unsigned long long ull; typedef long double ldouble; template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } const ll INF=1e18; int main(){ ll a,b,c; cin>>a>>b>>c; bool ok=1; set x; if(a==0){ if(b==0){ if(c==0){ ok=0; } }else{ x.insert((double)-c/b); } }else{ if(b*b-4*a*c>=0){ ll d=b*b-4*a*c; if(d==0){ x.insert((double)-b/(2*a)); }else{ x.insert((double)(-b+sqrt(d))/(2*a)); x.insert((double)(-b-sqrt(d))/(2*a)); } } } if(ok){ cout<0){ while(!x.empty()){ double xx=*begin(x); cout<