int main () { int i; int sum = 0; for (i = 15; i <= 122; i++) sum += i; assert(sum == 0); return sum; }