#include <cstdio> using namespace std; int main() { int A,B,C,D; scanf("%d%d%d%d",&A,&B,&C,&D); printf("DIFERENCA = %d",A*B-C*D); return 0; }