#include <iostream>
using namespace std;
namespace Config {
int baudRate = 9600;
int threshold = 50;
}
int main() {
using namespace Config;
cout<<"Baud: "<<baudRate<<", ";
cout<<"Threshold: "<< threshold;
// your code here: add using namespace statement
// your code here: print baudRate and threshold
return 0;
}