from decimal import Decimal, getcontext a, b = map(int, input().split()) getcontext().prec = 53 ans = f'{Decimal(Decimal(str(a)) / Decimal(str(b))):.53f}' print(ans[:52])