public class Question { public static void main(String args[]) { int x=y=10; y=12; System.out.print(x+"&"+y); } }
Reveal answer
Fill a bubble to check yourself
public class Question { public static void main(String args[]) { int x=y=10; y=12; System.out.print(x+"&"+y); } }