a,b=map(int,input().split()) d=(a*10**30)//b d1=d//(10**30) d2=d%(10**30) print(str(d1)+"."+"0"*(30-str(d2))+str(d2))