# [ ] create, call and test fishstore() function
fish_entry=input("What fish are you looking for?")
price_entry=input("How much does it cost?")
def fishstore(fish,price):
print("You asked about a",fish_entry,"that fish costs $"+price_entry+".")
fishstore(fish_entry,price_entry)