#include int main() { int a, b, c, d, di; scanf("%d %d %d %d", &a, &b, &c, &d); di = ((a*b)-(c*d)); printf("DIFERENCA = %d\n", di); return 0; }