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