fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b, c;
  6. cin >> a >> b;
  7. c = b - (a + (-b));
  8. cout << c << " " << c - (a + (-b)) << " " << (c - (a + (-b))) - (a + (-b));
  9. return 0;
  10. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
2017564888 -259859452 1757683504