fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int x = 5;
  7.  
  8. cout << x << endl;
  9.  
  10. x = 0;
  11.  
  12. cout << x << endl;
  13.  
  14. }
  15.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
5
0