def main():
fibFour = 0
fibSix = 1
count = 0
fibFourList = []
fibDefines = int(input("Enter Integer => "))
while count < fibDefines:
fibFourList.append(fibFour)
storage = fibFour + fibSix
fibFour = fibSix
fibSix = storage
count += 1
print(fibFourList)
endgame()
def endgame():
print("Would you like to retry? Y or N")
response = input("==>")
if response == "Y" or response == "y":
main()
elif response == "N" or response == "n":
print("have a nice day")
else:
endgame()
main()