Answer:
There is no indentation on the second line - Python needs indentation for if statements to work
The if statement is incorrect - We want the if statement to check if a is greater than 10 not less than 10
A programmer might have made this error by confusing the less than and greater than signs
(I'm assuming this is python)