public class Test {
    static int b;
    static short c;

    public static void main(String[] args) {
        test();
    }

    static void test() {
        int i = 0;
        while(true) {
            if (i > 1) {
                b = 0;
            }
            c = (short) (b * 7);
            i++;
        }
    }
}
