#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
// your code here: call MathOps::square(x) and print result
printf("x=%d\n", MathOps::x);
printf("Square=%d\n", (int)(MathOps::square(MathOps::x)));
return 0;
}