#include<stdio.h> int main() { int i; for (i = 0; i <= 50000; i++) printf("\n%d", i); return 0; } Output: 1234...50000