I'm writing a simple program to accept only numbers. but the program is accepting both letters and numbers
I'm using python 3.. I used the int data type in addition to input statement.
#A program to accept input of a number
print('Welcome to our age verification system.')
int(input('Enter your age: '))
I expected it to accept only integers.