public class LevelRunner
{
	public static void main(String[] args) 
	{
		Level x = new Level( 44, 100 );
		System.out.println( x.getPoints() );
		System.out.println( x.goalReached() );
		x.addPoints( 300 );
		System.out.println( x.getPoints() );		
	}
}

