#include int main() { int count = 0; while(count<100) { count++; if(count % 5 != 0) printf("%d\t",count); } return(0); }