a=[] while True: s=int(input()) a.append(s) if s==0: break n=len(a) for i in range(0,n): if a[i]!=0: h=100*0.7**a[i] print('%.2f'%h) i+=1