import decimal decimal.getcontext().prec = 50 a, b = map(int, input().split()) x, y = divmod(a, b) ans = str(x)+'.' for i in range(0, 50): x, y = divmod(y*10, b) ans += str(x) print(ans)