Company: DIT intern hiring test
Difficulty: medium
What is the value of `a` at the end of the loop? ```python a = 0 for b in range(0,10,2): a += b + 1 ```