from decimal import Decimal, getcontext getcontext().prec = 60 A, B = map(Decimal, input().split()) s = f'{A/B:.60f}' print(s[:s.index('.')+51])