from decimal import * class Problem0858: def solve(this): a, b = map(int, input().split()) getcontext().prec = 50 getcontext().rounding = ROUND_FLOOR print(Decimal(a) / Decimal(b)) if __name__ == "__main__": problem = Problem0858() problem.solve()