k=int(input()) list1=[] while k!=0: list1.append(100*0.7**k) k=int(input()) for i in list1: print("%.2f"%i)