fork download
  1. //VRABAC I MACKA
  2.  
  3. #include <iostream>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. int a, b, c, d;
  9. cin >> a >> b >> c >> d;
  10.  
  11. int v = b - a;
  12. int m = d - c;
  13.  
  14. if (v > m)
  15. {
  16. if (a < c)
  17. cout << v - (m + c - a);
  18. else
  19. cout << v - (m - c + a);
  20. }
  21. else
  22. cout << 0;
  23.  
  24. return 0;
  25. }
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
-10813