from decimal import * getcontext().prec = 51 A, B = input().split() ret = str(Decimal(int(A)) / Decimal(int(B))) ret = ret[:-1] print(ret)