import decimal decimal.getcontext().prec = 52 a, b = map(int, input().split()) print('{:.51f}'.format(decimal.Decimal(a) / decimal.Decimal(b))[:-1])