public class Game
{	
	private Level one;
	private Level two;
	private Level three;
	
	public Game( int[] p, int[] g )
	{
		one = new Level( p[0], g[0] );
		two = new Level( p[1], g[1] );
		three = new Level( p[2], g[2] );		
	}
	
	public boolean isBonus()
	{
		//just make up a bonus scenario
		return false;
	}
	
	public void play()
	{
		//just make up a play scenario	
	}
	
	public int getScore()
	{
		int pts = 0;
		//add the code for Part A
		return pts;
	}
	
	public int playManyTimes( int num )
	{
		int s = 0;
		//add the code for Part B
		return s;
	}
}
