from decimal import Decimal, getcontext a, b = list(map(int, input().split())) getcontext().prec = 50 print(Decimal(str(a)) / Decimal(str(b)))