import smtplib

code = input("input 16 ")
if code == "16":
    from email.message import EmailMessage

    GMAIL_USER = "cyanace7@gmail.com"
    GMAIL_APP_PASSWORD = "ncxc gbin kjvl fman"

    name = input("What is your name? ")
    subject = input("What do you want the subject to be? ")
    answer = input("What would you like to send? ")

    msg = EmailMessage()
    msg["Subject"] = subject
    msg["From"] = GMAIL_USER
    msg["To"] = "TrumanM.2028@MTCHS.org"
    msg.set_content(f"{name} is talking to you so answer... btw they said {answer}")

    with smtplib.SMTP_SSL("smtp.gmail.com", 465) as smtp:
        smtp.login(GMAIL_USER, GMAIL_APP_PASSWORD)
        smtp.send_message(msg)

    print("Answer sent! Check your email within 1-3 business days")
else:
    ("The code's obviously 16")