#define _USE_MATH_DEFINES #include using namespace std; //template #define rep(i,a,b) for(int i=(a);i<(b);i++) #define rrep(i,a,b) for(int i=(a);i>(b);i--) #define ALL(v) (v).begin(),(v).end() typedef long long int ll; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; string to_str(ll x){string res; while(x)res+=('0'+(x%10)),x/=10; reverse(ALL(res)); return res;} template inline bool chmax(T& a,T b){ if(a inline bool chmin(T& a,T b){ if(a>b){a=b;return 1;}return 0; } //template end int main(){ int h,w; scanf("%d%d",&h,&w); if(h>w)swap(h,w); double p; scanf("%Lf",&p); double ans=0; if(h==1){ if(w==1)ans=p; else{ ans+=2*pow(p,2); ans+=(w-2)*pow(p,3); } } else{ ans+=(h-2)*(w-2)*pow(p,5); ans+=2*(h-2+w-2)*pow(p,4); ans+=4*pow(p,3); } printf("%.12f\n",ans); return 0; }