Open and save a new project called DoNow103
in your IDE or text editor.
Practice typing the following expressions in the editor and running the code.
2 * 3 * 5
"abc"
"abc" + "bde"
print(2*3*5)
Write down the result. Explain what print
does. Try printing out 3 different values.