#include "stdafx.h"
#include "Buchstabenzaehler.h"

int BerechneAnzahlBuchstaben(std::string wort) {
    return wort.length();
}