#After user inputs the year they were born I want to break it down using fadic addition like below#
birth_year = int(raw_input('Please enter the year you were born'))
#User inputs 1953
birth_year = 1953
#What I want is to do this using Fadic addition:
birth_number1 = 1 + 9 + 5 + 3 # = 27
birth_number2 = 2 + 7 = 9 # = 9
print 'Your birth year number is:', birth_number2