#include main(){unsigned char i=0;while(i<50) { if((i%3)&&(i%5==0 )) printf("%2d\n",i); i++; }}
i=0while(i<50){ if (i%3!=0) prinff("%d",i); i+=5;