# my code
import random
from threading import Thread
import time
import os
from inputimeout import inputimeout, TimeoutOccurred
# todo inputs
b = input("press enter to start")
lowest_numb = input("lowest number")
highish_numb = input("highish_numb")
time_for_qus = int(input("time for question"))
print(type(time_for_qus))
def ask_question():
ran_1 = random.randint(int(lowest_numb), int(highish_numb))
ran_2 = random.randint(int(lowest_numb), int(highish_numb))
print(f"{ran_1}x{ran_2}", end="")
try:
answer = inputimeout("", time_for_qus)
except TimeoutOccurred:
print("Times up!!!")
ask_question()
ask_question()
my goal is to make a multiplication game, but i am having trouble canceling the input
function
can you help?
PS. please respond