favorite_number_str = input("What is your favorite number: ")
birth_month_str = input("What month where you born in: ")

lucky_number = int(favorite_number_str) + int(birth_month_str)
print("Your lucky number is " + lucky_number)