from decimal import* while 1:a,b=map(Decimal,input().split());getcontext().prec=54;print("{:f}".format(a/10**b))