#includeint main(){int i;for(i=0;i<=1000;i++){if(i%3==2&&i%5==3&&i%7==5) printf("%5d",i); } return 0; }