I did very simple code, I literally just started python but I created some IF and elif statements and it always, prints the first If statement, sorry for bothering people with this petty problem. I tried to search and couldn't find my problem due my lack of experience.
name = input ("what is your name")
if name == ("x") or ("y"):
print ("Hello")
elif name == "n" or name == "m" or name == "N" or name == "M":
print ("a")
else:
print ("b")