#!/usr/bin/python #_*_ coding:utf-8 _*_ while True: n=int(input()) if n==0: break else: h = 100 for i in range(n): h=0.7*h print '%.2f' % h #保留2位小数