from decimal import * a, b = map(int, input().split()) ctx = getcontext() ctx.prec = 1000 ctx.rounding = ROUND_FLOOR ctx.Emin = -10000 y = Decimal(a) / Decimal(b) print(y.quantize(Decimal('1.' + '0' * 50)))