fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int x = 5;
  4.  
  5. int main() {
  6. // your code goes here
  7. int x = 2;
  8. printf("%d",x);
  9. {
  10. int x = 3;
  11. printf("%d",x);
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 4568KB
stdin
Standard input is empty
stdout
23