I know ^.^ I changed it as fast as I could, way before you posted.
where did no change it? Looks the same to me.
include <iostream>
namespace A {
int var = 10; <<< error here
};
namespace B {
int var = 20; <<< error here
};
using namespace A; <<< error here
using namespace B; <<< error here
<snip>