lst-0107-godb.cpp
//#(execute) c++; compiler:g132; options:-O3 -std=c++23; libs:-
//https://godbolt.org/z/P9z8n8v16
#include <fstream>
int main(int argc, char* argv[]) {
int wert = 0;
std::ifstream meineEingabe{"input1.txt"};
meineEingabe >> wert;
}