a, b = map(int, input().split()) f = 0 if a < 0: f ^= 1 a = -a if b < 0: f ^= 1 b = -b ans = a / b * (-1) ** f print(ans)