public class MainClass { public static void main(String[] argv) { int x = 2; int y = 3; while (x >> 2) { x *= y; } } }