import sys
input=lambda: sys.stdin.readline().rstrip()
a,b,c,d,e,f=map(int,input().split())
r2=f-e+c**2/4/a+d**2/4/b
print(r2**0.5)