#include #include int main() { int a,b; a=0; do{ a+=20; for(b=2;b<21;b++) if(a%b!=0) b=21; }while(b!=21); printf("\n\t%i\n\n",a); system("pause"); return 0; }