extern int __VERIFIER_nondet_int(void); int foo(int i,int j){ while (i < 10) { j = i; while (j > 0) { j = j+1; } i = i+1; } return 0; }