Analise o seguinte trecho de código Python:
_
a, b = 0, 1
while a <= 14:
if (a % 2) == 1:
print(a)
a, b = b, a+b
A sequência correta de valores impressos pelo código acima é:
0, 1, 4, 8, 12.
1, 1, 3, 5, 13.
1, 1, 2, 4, 14.
0, 1, 3, 9, 13.
1, 3, 5, 9, 14.