word1 = input("Random Name (ex. Ryan):")
word2 = input("Your name (ex. why do you need an example of your name?):")
print("To:", word1, "@gmail.com")
print("From:", word2, "@outlook.com")
Now you almost need to ignore everything except, word 1 and word2 for now.
Im just wondering why is that the output is
To:name @gmail.com
and not To:[email protected]
Thanks in advance guys!