what should i comment out to get 19
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 + 3 * x;
x = x * 2;
//x = x * 16;
y = y + 2 * x;
y = y + x;
System.out.println(y);
}
}