from decimal import Decimal, getcontext A, B = [int(i) for i in input().split()] getcontext().prec = 51 print(str(Decimal(A) / Decimal(B))[:-1])