while True: try: n = int(raw_input()); if n == 0: break; h = 100.0 for i in range(0,n): h *= 0.7; print "%.2f"%h; except EOFError: break