int simple_while() { int x = 1; while (x <= 10) { x = x + 1; } return x; }