Integers seedVal, lowBound and upBound are read from input. lowBound and upBound represent the minimum and maximum numbers of candies to be put in each bag, respectively. A total of 80 candies are available. Complete the following tasks:

Call randGen's setSeed() with seedVal as the argument.
Assign variables bag1 and bag2 each with a random number of candies between lowBound and upBound, both inclusive.
Assign variable remainingCandies with 80 minus the sum of bag1 and bag2.