#include <iostream>
using namespace std;
namespace MathOps {
int x = 10;
int square(int n) {
return n * n;
}
}
int main() {
// your code here: print MathOps::x
int x = MathOps::x;
cout<<"x="<<x<<endl;
// your code here: call MathOps::square(x) and print result
cout<<"Square="<<MathOps::square(x)<<endl;
return 0;
}