from decimal import * a,b=map(int,input().split()) getcontext().prec = 51 a,b = Decimal(a),Decimal(b) print(format(a/b,'.51f')[:-1])