M=10**50 A,B=map(int, input().split()) A*=M x=A//B S=str(x) s,t=S[:-50],S[-50:] if s: print(s+"."+t) else: print("0"+"."+t)