When I run this code it always goes to the else. Even when I choose 1, 2, or 3. How can I achieve a proper if, elif else statement?
def main():
    name = input("What is your name?")
    print("Hello", name)
    choice = int
    choice = 0
    choice = input("Please choose a number from the following options: \n 1. Paper \n 2. Rock \n 3. Scissors")
    print (choice)
    if choice == 1:
        print ('You chose number 1')
    elif choice == 2:
        print ('You chose number 2')
    elif choice == 3:
        print ('You chose number 3')
    else:
        print ('Invalid Entry Mush')
    return
main()
 
     
     
    