import sys input=lambda: sys.stdin.readline().rstrip() a,b=map(int,input().split()) ans0=str(a//b)+"." ans="" a%=b while len(ans)<50: a*=10 if a