int tnt = 0;
for (int i = -1000; i < 1000; i++)
tnt += i;
cout << tnt << endl;
int i;
for (i = 1; i < 100; i += 5)
continue;
cout << i << endl;