class Counter:
      def __init__ (self, initial, inc):
            self.value = initial
            self.inc = inc
            return
      
      def add (self):
            self.value += self.inc
            return
      
      def __str__ (self):
            return "%s (%s)" % (self.value, self.inc)
      
      pass

