Program Python untuk memberi nama toko

print("Welcome to the shop Name Generator.")
street = input("What's name of the city you grew up in?\n")
pet = input("What's your pet's name?\n")
print("Your shop name could be " + street + " " + pet)
Programmer of empires