fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. namespace S {
  5. int A = 1;
  6. }
  7.  
  8. namespace S {
  9. int B = A + 2 ;
  10. }
  11.  
  12. int main(void) {
  13. S::A = S::A + 1;
  14. { using namespace S;
  15. ++B;
  16. }
  17. cout << S::B << S::A;
  18. return 0;
  19. }
  20.  
  21.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
42