from random import randint # user input n1 = int(input('select your first number think about it then it will take your number add it together than give you a question ')) n2 = int(input('select your second number think about it then it will tke your number add it together than give you a question ')) print(f"{n1} + {n2} = {n1 + n2}" ) #Math stuff n1 = randint (1, 10000) n2 = randint (1, 10000) ans = int(input(f'{n1} + {n2} = ? ')) if ans == n1 + n2: print('You got it right good job') print('Now for somthing harder') n1 = randint (1, 100000) n2 = randint (1, 100000) ans = int(input(f'{n1} + {n2} = ? ')) else: print(f'Wrong the answer was {n1 + n2}.') print('try it again take your time') n1 = randint (1, 1000) n2 = randint (1, 1000) ans = int(input(f'{n1} = {n2} = ? '))