n=int(input()) p=float(input()) q=float(input()) def P(n): if n==1: return p return p+q*q*P(n-1) print(P(n))