from decimal import * A, B = map(int, input().split()) a = Decimal(str(A)) b = Decimal(str(B)) getcontext().prec = 51 ans = str(a/b) print(ans[:52])