list=[] h=100 n=int(input()) while n!=0 : list.append(n) n=int(input()) for i in list : print("%.2f"%(h*0.7**i))