extern int __VERIFIER_nondet_int(void); int foo(int x,int y,int r){ r = 1; while (y > 0) { r = r*x; y = y - 1; } return 0; }