score = 100 highScore = 90 if score > highScore: print("You have the new high score!") highScore = score print("High Score:", highScore) while True: print("Running...") break