lst-0022-godb.cpp
//#(compile) c++; compiler:g132; options:-O3 -std=c++23; libs:-
// https://godbolt.org/z/4Mr6fnaEr
#include <iostream> // cout
int main() {
int basis = 2;
int index = 10;
int zahl = 3 * (basis + ++index) - 1; // zuerst wird index erhöht
std::cout << zahl << '\n'; // Ausgabe: 38
}