Skip to content

Instantly share code, notes, and snippets.

@m4hi2
Created April 5, 2017 20:10
Show Gist options
  • Select an option

  • Save m4hi2/bafd00c952b00a15d981d4c2b51e4427 to your computer and use it in GitHub Desktop.

Select an option

Save m4hi2/bafd00c952b00a15d981d4c2b51e4427 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
int a,b,c,d;
scanf("%d%d%d%d", &a, &b, &c, &d);
printf("DIFERENCA = %d\n", (a*b - c*d) );
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment