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