My code is below. I want this code to print only when the input is 5 or 6 but anything I type print function works. It is probably because I use the "or" operator wrongly but I could not find any more info. for example when the input is 8, it still prints.
a = 5
b = 6
if input() == a or b :
print("5 or 6")