// conuse.cpp; Confusing because of the tw variables i
#include <iostream>
namespace A {
 int i = 10;
}
int i = 20;

int main() {
 using A::i;
 std::cout <<  i << std::endl; // Ouput: 10
 return 0;
}
