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