# print out a blank line
print('\n')
# ask the user if today is their birthday (true or flase) answer
birthday = bool(int(input('Is today your birthday, 1-True or 0-False? ')))
# print out a blank line
print('\n')
# checks the user response
# if it is true it will display Happy Birthday.
# otherwise display good wishes message.
if birthday = False :
print("Happy Birthday!")
print("Hope you have the best day")
else :
print("Have a great day when it comes.")
# print out a blank line
print('\n')