Как ответить на число в Python

variablename = int(input('Text You Want'))

if variablename == 1:
    print('You Typed 1')
FuntimeDeCutie