a = input("do you like manga (yes/no) ?") if a == "yes": print("thats so cool") c = input("what type of manga do you like? ") print(c, "is a great choice") d = input("there is a new manga coming out, do you want to hear about it (yes/no) ?") if d == "yes": print("its called solo leveling, its about a weak hunter who becomes the strongest of them all") elif a == "no": b = input("why?") x = input("well there is an upcoming manga i think you should try it out as it might change your opinion ") else: print("invalid input, bye!")