#include #include int main(void) { int x = 0; unsigned int y = INT_MAX + 1; while (x < y) { x++; } printf("Done\n"); return (0); }