import random
import sys
player_oneN = input("Enter Name for Player One")
player_twoN = input("Enter Name for Player Two")
player_oneS = 0
player_twoS = 0
if player_oneN == "stop" or "exit":
c = int(input("Press 1 to continue and 0 to quit :"))
if c == 0:
sys.exit()
if player_twoN == "stop" or "exit":
c = int(input("Press 1 to continue and 0 to quit :"))
if c == 0:
sys.exit()
whenever I try to run this code the options to exit the program always displays. I only want this option to come available when the user enters exit or stop in the player one and player two input.