Given: class Sixties { public static void main(String[] args) { int x = 5; int y = 7; System.out.print(((y * 2) % x)); System.out.print(" " + (y % x)); } } What is the result?
1 1
1 2
2 1
2 2
4 1
4 2