Q34Single correct3 Marks7 Aug 2022
What should be the Input to the following code-block for its output to be common?
```
char = input()
words = ['fray', 'than', 'plank', 'black',
'flask', 'smack', 'grand', 'place']
count = 0
for word in words:
if char in word:
count += 1
if count == len(words):
print('common')
else:
print('not common')
```