# Aqil Tariq import random print("Hello World") print("You will be asked 10 questions") name = input("Enter a name") nick_name = input("Enter a nickname") print("Ok", name) print("But I will call you", nick_name) num1 = random.randint(1,10) num2 = random.randint(1,10) score = 0 questionNumber = (1) print("Question 1") while questionCount <= : questionChoice = random.randint(1,3) if questionChoice == 1: print(num1,"+", num2, "=?") computerAnswer = num1 + num2 elif questionChoice == 2: print(num1,"-", num2, "=?") computerAnswer = num1 - num2 elif questionChoice ==3: print(num1, "*", num2 , "=?") computerAnswer = num1 * num2 answer = int(input("What is the answer?")) if computerAnswer != answer: print("This is incorrect") print("Your score is", score) else: print("This is correct") score = score + 1 print("Your score is", score)