Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int a,b,c,d,dif;
  5.     scanf("%d %d %d %d",&a,&b,&c,&d);
  6.     dif=(a*b - c*d);
  7.     printf("DIFERENCA = %d\n",dif);
  8.     return 0;
  9. }