public class X { public static void main(final String[] args) { final int i = -10 % -4; final int j = 10 % -4; System.out.println(i * j); } }