• It's give a right solution but checkio don't take.

Question related to mission First Word

 
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")