from decimal import Decimal, getcontext getcontext().prec = 100 A, B = map(Decimal, input().split()) print(f"{A / B:.60f}")