a, b = map(int, input().split()) N = 10 ** 100 assert not a * N % b ans = (a * N) // b print(ans / N)