def first_word(text): ans = '"' for i in text: if i not in ' .",': ans += i if i in ' ,.' and len(ans) > 0: ans += '"' return ans print(first_word(input()), "Hello" == "Hello")
1
3
7