**Before watching this make sure that you’ve tried enough**
#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; }
If this solution helped you, please share this with your friends.