from decimal import * getcontext().prec= 51 a,b = map(int,input().split()) r = Decimal(a) / Decimal(b) c = r.quantize(Decimal(str("0." + "0"*49 + "1")) , rounding=ROUND_FLOOR) print(c)