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