msg = "Hello, Welcome to my First Jupyter Notebook on my Blog"
print (msg)
Hello, Welcome to my First Jupyter Notebook on my Blog
msg = "Hello!"
print (msg)
Hello!

Printing some Math!

msg = 10
print (msg+1)
11