#include<stdio.h>
int main()
{
    int a,b,c,d,res;
    scanf("%d %d %d %d",&a,&b,&c,&d);
    res=(a+b-c)*d;
    printf("%d",res);
return 0;
}