def first_time_setup():
    print("Thank you for using this mulitplication program.")
    print("You will now have to create an admin account for this system.")
    admin_username = input("Enter in your desired admin username: "******"Enter in your desired admin password: ")
    setup_session = db(admin_username, admin_password)
    db.create_table(
        setup_session
    )  # Creates the userLoginDetails table for the multiplication.db
    db.create_admin(
        setup_session
    )  # Adds the admin username and password to the userLoginDetails table
    db.close_connection(
        setup_session)  # Closes the cursor and connection to db


#first_time_setup() # First time setup complete (admin has been added)
#login_screen()