Advertisement
MOHD_NASIR_UDDIN42

1007-Difference-URI Online Judge

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