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