from decimal import* a,b=[*map(int,input().split())] ans=Decimal(a)/Decimal(b) print(f'{ans:.100f}')