a,b,c,d,e,f = map(int,input().split()) #ax^2+by^2+cx+dy=f #a(x+c/2a)^2+b(y+d/2b)^2 = f+c^2/4a+d^2/4b print((f-e+c**2/4/a+d**2/4/b)**0.5)