#!/usr/bin/python # -*- coding: UTF-8 -*- while True: #假设永远为真 n=int(input()) if n==0: break else: s=100 for i in range(n): s=s*0.7 print '%.2f' % s