As you know, a user input in Python by default is a string. I tried converting them using the int() function after, however, it still stays as a string. Code example:
number = input("Input a number: ")
int(number)
print(type(number))
This would give an output of: <class 'str'>
, even though I tried converting them to an integer.