// welt.cc

using namespace std;    // Namensraum der C++ Standardbibliothek
#include <iostream>
int main() {
  cout << "Hallo, Welt!\n";
}
