from decimal import * A, B = map(str, input().split()) af = Decimal(A) bf = Decimal(B) print(af / bf)