randRange( 0, 20)

What would be printed if the following Python script were to be run?
('Nothing' is a possible answer.)

				  x = V1
				  if x < 14:
					if x < 5:
					    print 'A'
  				  else:
					print ’B'
				
evalIfElse1( V1 )

In Python indentation is used to match else with the corresponding if clause.

The correct answer is: evalIfElse1( V1 ).