lst-0022-book.cpp
// 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
}