Created
April 5, 2017 20:10
-
-
Save m4hi2/bafd00c952b00a15d981d4c2b51e4427 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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