> Python error for "if "statements?

Python error for "if "statements?

Posted at: 2014-12-18 
The last two lines should read:

else:

...print("Thanks for playing, Goodbye")

# i've used "..." to indicate indentation

Incase you cant read the picture it says

print("say Yes or No")

myReply = input()

if(input == "Yes"):

print("write down a 3 digit number (it can not be the same backwards)")

myAns = input()

print("now minus the number by its opposite to fine out the difference. e.g 231-132=099")

myAns = input()

print("now add the number to its opposite e.g 099 + 990")

myAns = input()

print("your answer should be 1089")

myAns = input()



else: (input == "N")

print("Thanks for playing, Goodbye")

the problem I'm having with this code is that even if i write Yes it says Thanks for playing, Goodbye