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