# Online Python compiler (interpreter) to run Python online.
# Write Python 3 code in this online editor and run it.
# This is a simple Python script
# Print a welcome message
print("Hello! Welcome to Python Script Mode ")
# Add two numbers
a = 5
b = 3
sum = a + b
# Print the result
print("The sum of", a, "and", b, "is", sum)