#!usr/bin/python while True: n=int(input()) if n==0: break else: h=100 for i in range(1,n+1): h=h*0.7 print '%.2f'%h