a, b=map(int, input().split()) for i in range(50): a*=10 s=str(a//b) ans=s[:-50] if ans=="": ans="0" ans+="." ans+=s[-50:] print(ans)