What is the output? int w, e; int y = 34; int z = 5; w = y / z; e = y % z; System.out.println(w); System.out.println(e);