public class Question { public static void main(String args[]) { int x=y=10; y=12; System.out.print(x+"&"+y); } }
10 & 12
10 & 10
Compile Time Error
None