static void Main(string[] args)
        {
            var eingabe = UserInteraktion.Bitte_User_um_Eingabe();

            var wordCounter = WordCount.Count_words(eingabe);

            UserInteraktion.Gebe_Ergebnis_aus(wordCounter);
        }