#include<stdio.h> int main() { int n=1; for(;;n++) if(n%3==1 && n%5==2 && n%7==4 && n%13==8) { printf("%d\n",n); break; } getchar(); return 1; }