#include<z3++.h>
#include<iostream>
#include"mainProj.cpp"
using namespace std;
using namespace z3;
int main()
{ context c;
tactic t = tactic(c, "bit-blast");
expr x = c.bv_const("x", 16);
expr y = c.bv_const("y", 16);
expr z = c.bv_const("z", 16);
goal g(c);
g.add(x == y + z);
return 0;
}
I am supposed to execute the following code. What is the command for compilation and execution?