#include <stdio.h>

int main()

{

int i =0;

for(i=1;i<=10;i++)//初始化,判断条件,调整

{

 if(i==5)

  continue;

printf("%d",i);

}


 return 0;

}