#include<iostream>
namespace abc{
int value = 123;
}
int main(){
std::cout << abc::value;
system("pause");
return 0;
}
#include<iostream>
namespace abc{
int value = 123;
}
int main(){
std::cout << abc::value;
system("pause");
return 0;
}