#include <iostream>
using namespace std;

// your code here: declare 
namespace A {int threshold=50;}
// your code here: declare 
namespace B {int threshold=75;}

int main() {
    cout << "A.threshold=" << A::threshold << "\n";
    cout << "B.threshold=" << B::threshold << "\n";
    return 0;
}
Upvote
Downvote
Loading...

Input

Expected Output

A.threshold=50 B.threshold=75