#includeint main(void){ int i, cot = 0; for(i = 1; i < 201; i++) { if(i % 3 != 0) cot += i; } printf("%d\n", cot); return 0;}
,,,