#include int main() { int m,c; for(c=0;c<100;c++) { m = c % 10; printf("%d\t",m); } return(0); }