What is the problem in this code? the condition is you have to uncomment only one line from this code where two line are commented y=x*y; y=x+y; the output: first 12 and then 2 public class Solution{ public static void main(String[] args){ int x=2; int y=12; y=x+y;//this line is uncommented // x=y-x; y=y-x; System.out.print(x); System.out.print(y);}}