so i was trying to building a simple guessing game then when i tried it, it gave me this error "Traceback (most recent call last): File "", line 5, in EOFError: EOF when reading a line"
secret_word = "Adam Omar"
guess = ""
while guess != secret_word:
guess = input("enter your guess:")
print("you win!")