extern int __VERIFIER_nondet_int(void); int foo(int c,int x,int y){ c = 0; while ((x > 1) && (x < y)) { x = x*x; c = c + 1; } return 0; }