madher2010 madher2010 23-05-2023 Computers and Technology contestada Marco is writing a program in which the users will be told that they cannot enter the castle if they do not have 50 armor points. Which of the following lines of code would do that? A. if armor > 50: print(“You cannot enter the castle!”) B. if armor = 50: print(“You cannot enter the castle!”) C. if armor == armor: print(“You cannot enter the castle!”) D. if armor < 50: print(“You cannot enter the castle!”)