Solution in C #include <stdio.h> int main() { int a,b,c,d,DIFERENCA; scanf("%d%d%d%d",&a,&b,&c,&d); DIFERENCA=(a*b-c*d); printf("DIFERENCA = %d\n",DIFERENCA); return 0; } ~~~~~~Happy Coding~~~~~~
No comments