a=[] n=int(input()) while n!=0: a.append(n) n=int(input()) for k in a: b=100 i=k while i>0: b=b*0.7 i=i-1 print('{0:.2f}'.format(b))