#include "printlib.h" int main() { int x; int y; while (x < 5000) { y = x+1; x = y+1; } println_int(x); return 0; } // EXPECTED // 5000