from decimal import * getcontext().prec = 51 a, b = map(int, input().split()) ab = str(Decimal(a) / b).split(".") print(ab[0] + "." + ab[1][:50])