n=int(input()) m=100 while n!=0: for i in range(1,n+1): m=m*0.7 print ('%.2f' %m) n=int(input()) m=100