n,m=map(int,input().split()) p=float(input()) a=1 if n==1 else (p*(n-2)+2)*p b=1 if m==1 else (p*(m-2)+2)*p print(a*b*p)