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