//In the Name of ALLAH //Infinite Loop #include <stdio.h> void main() { int i=0; for(;;) { printf("%d\n",i); i++; } }