#!/usr/bin/python # -*- coding: UTF-8 -*- while True: n=int(raw_input()) if n==0: break else: h=100 for i in range(n): h=h*0.7 print '%.2f' % h