from decimal import * A, B = map(Decimal, input().split()) getcontext().prec = 53 getcontext().rounding = ROUND_DOWN print("{:.50f}".format(A / B))