Вы можете вызвать метод numWhitespace()
следующим образом:
System.out.println("whitespaces = " + numWhitespace(input));
или сначала сохраните его в переменной:
int whitespaces = numWhitespace(input);
System.out.println("whitespaces = " + whitespaces);