namespace A
{
namespace B
int ab = 11;
}
namespace C
namespace D
using namespace A::B;
int
second()
ab;
return 0;
first()
//ab;
return D::second();
main()
return C::first();