Consider the given program.
```
words = input().split()
value = 0
for word in words:
value += max(min(len(word), 12), 9)
print(value)
```
What is the output of the above code for the input `"The extraordinary performance"`? Enter an integer as your answer.