n,m=gets.split.map(&:to_f) p=gets.to_f a=n==1?1:(p*(n-2)+2)*p b=m==1?1:(p*(m-2)+2)*p printf("%f\n",p*a*b)