extern int __VERIFIER_nondet_int(void); int foo(int c,int x){ if (c >= 2) { while (x + c >= 0) { x = x - c; c = c + 1; } } return 0; }