What does the call to the method `someMethod(3,1)` output?
public int someMethod(int x, int y)
int sum = 0;
while (x < 10)
sum += x % y;
x++;
y++;

return sum;


a) 12
b) 14
c) 16
d) 18