I am trying to allow certain input with this code.
Sdepth = int(input("enter depth of slab: "))
if Sdepth != 45 or Sdepth != 38 :
print("depth can only be 45 or 38")
Sdepth = int(input("enter depth of slab: "))
If I input 45 or 38 print("depth can only be 45 or 38") is output when it should not.
and, notor.