from decimal import * getcontext().prec = 100 A,B = map(lambda x:Decimal(int(x)),input().split()) print(f'{A/B:0.0100f}'[:52])