while True: try: n=int(input()) while n!=0: s=100 i=1 while i<=n: s*=0.70 i+=1 print ('%.2f'%s) break; except EOFError: break;