name = input('Name: ') village = input('Village Name: ') activity1 = input('Activity: ') activity2 = input('Activity: ') animal = input('Animal: ') weapon = input('Weapon: ') print(f"There once was a ninja named {name}.\nHe lived in a village called {village}") print(f"During the night, {name} would {activity1} and {activity2}.") print(f"One day a {animal} came to {village}.") print(f"{name} fought the {animal} with a {weapon} and saved {village}.")