from decimal import * a, b = map(int, input().split()) print(Decimal(a) / Decimal(b))