Python
import random

money = 1000000
day = 0

company = input("What are you naming your company")
investment = int(input(f"You have ${money} how much are you investing"))
while ? != 'Quit':
    day +=
    if random.randint(1,3) == 1:
        earn = random.randint(1,1000000)
        money += earn
        ? = input(f"you earned ${earn} now you have ${money} type 'Quit' to quit")
    else:
        earn = random.randint(1,1000000)
        money -= earn
        ? = input(f"you lost ${earn} now you have ${money} type 'Quit' to quit")
print(f"you earned ${money} and went through {days} days!")