I can't trace my error it's showing that its providing the correct result but comment as many lines as possible.
package com.codegym.task.task02.task0211;
/*
The required number
*/
public class Solution {
public static void main(String[] args) {
int x = 1;
int y = 0;
y = y + x;
x = x * 2;
y = y + x;
x = x * 2;
y = y + x;
//x = x * 2;
y = y + x;
x = x * 2;
y = y + x;
System.out.println(y);
}
}