# To print a string...print("I am a string yay")
# To print an answer to an equation...print(5+5)
# To print the answer of previously defined variables...x = 50n = 30print(x + n)
# Notes:# You can't add a string to a number.x = "foo"n = 50print(x + n)
# That will come up with an error.