import openai
openai.api_key = input("OpenAI API Key: ")
response = openai.Completion.create(engine="text-davinci-003", prompt=prompt, max_tokens=256, temperature=0.2)
print(response['choices'][0]['text'])