#include int main() { int i, cnt = 0; for (i = 1; i <= 597; i += 4) { cnt += i * (i + 2); } printf("%d", cnt); return 0; }