list1=[] s=100 while True: n=int(raw_input()) if n == 0: break list1.append(n) for value in list1: print "%.2f" % (s*(0.7**value))