public class FunNumber1
{
int originalNumber;   

public FunNumber1()  {; }

     /** 
	* returns the value of this FunNumber
	* @return value of this FunNumber
	*/
	public int getValue()
	{
		return originalNumber;
	}
     
        /** 
	* prints all of the factors of this FunNumber value
	*/
	public void printFactors()
	{
		// code goes here
     }
     
    /*** 
	* determines the factorial of this FunNumber value
	* @return this FunNumber value's factorial
	*/
	public int findFactorial()
	{
		// code goes here
		return 1;
	}
    
   /** sums the integers that are less than or equal to this
	* FunNumber value
	* @return the sum of the integers <= this FunNumber value
	*/
	public int sumInts()
	{
		// code goes here
		return 1;
	}
     
    
	
	

   public int sumOfMultiples(int upToWhatNum){
      return 1;
    }
	
	
	
}

