1 2 3 4 5 6 7 8 9
int irreducible() { int x = 1; while (x > 0) { if (x < 2) x = x + 1; x = x + 1; } return x; }