from decimal import Decimal A, B = input().split() a = Decimal(A) b = Decimal(B) print(a/b)