from decimal import Decimal, getcontext getcontext().prec = 51 a,b = map(Decimal,input().split()) ans = Decimal(a/b) print("{:.50f}".format(ans))