from decimal import Decimal a,b = map(int,input().split()) import math n = 50 x = a/b y = math.floor(x * 10 ** n) / (10 ** n) print("{:.50f}".format(y))