Advertisement
Guest User

1007

a guest
Oct 14th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int A,B,C,D,DIFERENCA;
  5.  
  6.     scanf("%d%d%d%d",&A,&B,&C,&D);
  7.     DIFERENCA=((A*B)-(C*D));
  8.     printf("DIFERENCA = %d\n",DIFERENCA);
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement