A.removeAll();
B.removeAll();
knows = A.createURI("http://example.com#knows");
max = A.createURI("http://example.com#max");
konrad = A.createURI("http://example.com#konrad");
URI james = A.createURI("http://example.com#james");
URI guido = A.createURI("http://example.com#guido");
A.addStatement(max, knows, konrad);
A.addStatement(konrad, knows, max);
B.addStatement(max, knows, konrad);
B.addStatement(guido, knows, james);
}