extern int __VERIFIER_nondet_int(void); int foo(int a,int b){ while (a >= 1 && b >= 1) { a = 2*a; b = 3*b; } return 0; }