What is the output of the following code snippet
int f1 = 0;
int f2 = 1;
int fRes;
System (f1 + " ");
System (f2 + " ");
for (int i = 1; i < 10; i++) {
fRes = f1 + f2;
System (fRes + " ");
f1 = f2;
f2 = fRes;
}
System.out.println();
a) 0 1 5 7 9 11 13 15 17 19
b) 0 1 1 2 3 5 8 13 21 34
c) 0 1 4 6 8 10 12 14 16 18
d) 0 1 6 7 9 12 14 17 19 21