Can someone fix this so that it only says "its a payday" on 15 and 30 and on all other days "sorry, it's not payday"
tod=int(input("Enter today's day numerically:"))
if (tod != 30 or tod != 15):
print("Sorry, not a payday.")
if (tod == 30 or tod == 15):
print ("It's payday!")