static long int i = 1; static long int s = 0; int main() { for ( i = 1; i <= 3; i++ ) { s = s + i; } return 0; }