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