from decimal import * getcontext().prec = 52 a, b = map(int, input().split()) print(f"{Decimal(a)/Decimal(b):.{51}f}"[:-1])