#include<stdio.h> int main() { int i; for(i=35;i<=1000;i++) if(i%50&&i%70) printf("%d “,i); printf(”\n"); }