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