fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int x = 890;
  7. int y = x - 50;
  8. int z = y + 8765789076;
  9. cout << "x = " << x <<endl;
  10. cout << "y = " << y <<endl;
  11. cout << "z = " << z;
  12. return 0;
  13. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
x = 890
y = 840
z = 175855324