#include using namespace std; int main(){ long long int W,H,N; cin >> W >> H >> N; long long int cntW=0,cntH=0; vector usedW(W+1,false); vector usedH(H+1,false); for(int i=0;i> S >> K; if(!usedW[S]){ usedW[S] = true; cntW++; } if(!usedH[K]){ usedH[K] = true; cntH++; } } long long int ans = cntW*H+cntH*W-cntH*cntW-N; cout << ans << endl; }