int main() { int max = 5; int acc = 0; for (int i = 0; i < max; i++) { acc += i; } return acc + 2; }