#include <stdio.h> #include <stdlib.h> int main() { int i; for (i=67; i<10000; i+=80) { printf("%04d\n", i); } system("pause"); //exit(1); }