extern int __VERIFIER_nondet_int(void); int foo(int i,int j){ while (i != j) { i = i-1; j = j+1; } return 0; }