while True: try: n=int(raw_input().strip()) if n!=0: i=1 s=100 while i<=n: s=s*0.7 i=i+1 print '%.2f' % s else : break except EOFError: break