All submissions
#include<iostream>
using namespace std;

namespace Communication
{
    namespace I2C
    {
        int speed = 400000;
    }
}

namespace CI = Communication::I2C;
int main()
{
    cout<<"I2C Speed: "<<CI::speed<<endl;
}
Loading...

Input

Expected Output

I2C Speed: 400000