#include <iostream>

using namespace std;

namespace A::B::C
{
    void fun(){std::cout << "ddd" << std::endl;}
}

int main() {
    A::B::C::fun();
    return 0;
}