Which of the following options checks that city is neither Atlanta or Philadelphia?
A if not city == "Atlanta" or not city == "Philadelphia"
B if not (city == "Atlanta" or city == "Philadelphia")
C if not (city == "Atlanta" and city == "Philadelphia")
D if not city == "Atlanta" or city == "Philadelphia"