print 'I can tell your age' raw_input() print 'pick the number of times a week that you would like to have dinner out.' #guess_number = 5 print 'guess_number is 5' print guess_number raw_input() print 'Multiply this number by 2' two_times_number = guess_number * 2 print 'two_times_number is guess_number * 2' print two_times_number raw_input() print 'Add 5' adding_five = two_times_number + 5 print 'adding_five two_times_number' print adding_five raw_input() print 'Multiply it by 50 (multiply by 5 and suffix a 0 at the end)' multiply_by_fifty = adding_five * 50 raw_input() print 'If you have already had your birthday this year add 1755. If you have not, add 1754.' adding_number = multiply_by_fifty + 1755 raw_input() print 'Now subtract the four digit year that you were born. e.g subtract 1943' subtracting_year = adding_number - 1995 raw_input() print 'You should have a three digit number.' print subtracting_year raw_input() print 'The first digit of this was your original number (I.e., how many times you want to eat out each week.) The next two numbers are...' raw_input() print 'YOUR AGE!!!!'