I am trying to grasp the basics of "IF" statements in the python.
But for what ever reason cant.

Code:
username= raw_input('Username for this program : ')

if username < 23:
        username = 23
        print 'I am sorry you are not the user of this program.'
elif username == 23:
        print "Welcome user #23"
elif username != 23:
        exit
...