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);
    }
}