Comment répondre à un nombre en Python

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

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