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