We have already created a namespace named Config.
Config
Your task is to declare two integer variables inside it:
baudRate = 9600
threshold = 50
The program already uses these variables in main().
main()
You only need to declare them inside the namespace.
Example
Output:
Baud: 9600, Threshold: 50
Why this output?
Because main() prints the variables stored inside the namespace Config.
Question Significance
This problem teaches how to place variables inside an existing namespace.
Test Cases
Test Results
Input
Expected Output