#include; #include"intcell.h" using namespace std; int main() { IntCell x(9); IntCell y(11); cout << x.getValue() << endl; cout << y.getValue() << endl; x.setValue(13); cout << x.getValue() << endl; }