fork download
  1. #include <stdio.h>
  2.  
  3. int square(int x){
  4. return x*x;
  5. }
  6.  
  7. int negate(int x,int y){
  8. return x-y;
  9. }
  10.  
  11. int abs(int x){
  12. return (x>0)?x:-x;
  13. }
  14.  
  15.  
  16. int main(void){
  17. int x,y;
  18. scanf("%d %d",&x,&y);
  19. printf("%d",abs(negate(square(x),square(y))));
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 5272KB
stdin
25 10
stdout
525