class SimpleAssignment { public void baz() { int a = 2; int b = 3; int c = 4; int d; d = (a / b) * c; } }