#include <iostream>
using namespace std;
namespace Config {
namespace ADC { int resolution = 12; }
namespace PWM { int frequency = 1000; }
}
int main() {
// your code here: print resolution and frequency with their namespace paths
// Accessing ADC resolution through Config::ADC::resolution
cout << "ADC.resolution=" << Config::ADC::resolution << "\n";
// Accessing PWM frequency through Config::PWM::frequency
cout << "PWM.frequency=" << Config::PWM::frequency << "\n";
return 0;
}