               #include "Counter.h"
               #include <iostream>     

               main() {  
               
                  Counter c1(10); 
                  Counter *c2 = new Counter(20);
                                    
                  cout << c1.getValue() << endl;
                  c1.increment(5);
                  cout << c1.getValue() << endl;
                  cout << c2->getValue() << endl;
                  c2->increment(5);
                  cout << c2->getValue() << endl;
                  delete c2;
        
               }
