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; y = y + x; x = x * 2; y = y + x; System.out.println(y); } }