while True: try: a=int(input()) s=100 while a>=1: if a>1: s*=0.7 a-=1 else: a=1 s*=0.7 print("%.2f"%s) break except EOFError: break