00001 #include <stdio.h> 00002 00003 int Count; 00004 00005 for (Count = 1; Count <= 10; Count++) 00006 { 00007 printf("%d\n", Count); 00008 } 00009 00010 void main() {}