# a. Ttitle: Math Quizz # b. Author: Julio Abu-Chacra Ribeiro # c. Date: 20/05/2026 # d. Version: 1 # e. Purpose: To create and give a random equation using two numbers in between 1 to 10 and inform the user if their answer was correct and what the correct answer is print('Salutations, welcome to my math quizz \U0001F913') rounds = input('How many rounds would you like to play? (5-10)') import random def script(): num_first = random.randrange (1, 10) num_second = random.randrange (1, 10)