public class whilePolyadicWholeCondition { void test(int a, int b) { while ((a < 0 && b > 0)) { a--; b++; } } }