#include; #include"intcell_better.h" using namespace std; int main() { IntCell x(5); IntCell y(7); cout << x.getValue() << endl; cout << y.getValue() << endl; x.setValue(10); cout << x.getValue() << endl; }