while True: try: a = int(input()) if a==0: break b = 100 b = b*0.7**a print('%.2f'%b) except EOFError: break