print("God Luck! (Answer wit ha letter)")
score = 0

# Question 1
print("Which of the following procedures would rotate the pipe into the correct position?")
print("A. Rotate right AND rotate left")
print("B. Rotate right OR rotate left")
print("C. Rotate right THEN rotate left")
print("D. Rotate right x3")
print("E. None of these answers")

answer1 = input("Enter your answer (A, B, C, D, or E): ")
if answer1.upper() == "D":
    print("Correct!")
    score += 1
elif answer1.upper() == "B":
    print("Correct!")
    score += 1
elif answer1.upper() == "A":
    print("wrong")
elif answer1.upper() == "C":
    print("wrong")
elif answer1.upper() == "E":
    print("wrong")
# Question 2
print("Which of the following procedures would rotate the pipe into the correct position?")
print("A. Rotate right AND rotate left")
print("B. Rotate right x3 OR rotate left")  
print("C. Rotate right THEN rotate left")
print("D. Rotate right x3")
print("E. None of these answers")

answer2 = input("Enter your answer (A, B, C, D, or E): ")
if answer1.upper() == "D":
    print("Correct!")
    score += 1
elif answer1.upper() == "B":
    print("Correct!")
    score += 1
elif answer1.upper() == "A":
    print("wrong")
elif answer1.upper() == "C":
    print("wrong")
elif answer1.upper() == "E":
    print("wrong")

# End of quiz
print("Your final score is: " + str(score))
God Luck! (Answer wit ha letter)
Which of the following procedures would rotate the pipe into the correct position?
A. Rotate right AND rotate left
B. Rotate right OR rotate left
C. Rotate right THEN rotate left
D. Rotate right x3
E. None of these answers
Correct!
Which of the following procedures would rotate the pipe into the correct position?
A. Rotate right AND rotate left
B. Rotate right x3 OR rotate left
C. Rotate right THEN rotate left
D. Rotate right x3
E. None of these answers
Correct!
Your final score is: 2