int part_1(){ int i; scanf("%d",&i); if(i%5==0&&i%7==0) return 1; return 0; }
int myfun(int n){ return !(n%35);}