fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int x = 7;
  7. int y = x + 60;
  8. int z = y - 9;
  9. int f = z + 3;
  10.  
  11. cout << "x = " << x << endl;
  12. cout << "y = " << y <<endl;
  13. cout << "z = " << z <<endl;
  14. cout << "f = " << f;
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5296KB
stdin
Standard input is empty
stdout
x = 7
y = 67
z = 58
f = 61