#include <stdexcept>
using namespace std;

int main() {
	throw runtime_error("Fehlertext!");
	return 0;
}