public class Tester {
public static void main(String[] args) {
int i = 0;
int result = 3;
while ( i < 2 ){
i++;
}
if (i == 2)
result++;
if (i == 2 * 2)
result++;
}
}