int nested() { int result = 0; for (int i = 0; i < 10; i = i + 1) { for (int j = 0; j < 10; j = j + 1) { result = result + 1; } } return result; }