What are the values of i and j after the following code snippet is run
int i = 10;
int j = 20;
int count = 0;
while (count < 5)
{
i = i + i;
i = i + 1;
j = j - 1;
j = j - j;
count++;
}
System.out.println("i = " + i + ", j = " + j);
a) i = 45, j = 1
b) i = 351, j = 0
c) i = 351, j = 2
d) i = 1311, j = 35