class SumUpDriver
{
public static void main(String[] args)
{
SumUp foo = new SumUp();
System.out.println("Sum of all integers between 1 and 10 inclusive divisible by 2 and 3 is " + foo.sumUpT(1, 10, 2, 3));
System.out.println("Number of integers between 1 and 10 inclusive divisble by 2 and 3 is " + foo.sumUpNT(1, 10, 2, 3));
}
}