# Define two numbers
a = 5
b = 3
# Add the numbers
sum = a + b
# Print the output
print('The sum of', a, 'and', b, 'is:', sum)
Run to view results
# Define two numbers
a = 5
b = 3
# Multiply the numbers
product = a * b
# Print the output
print('The product of', a, 'and', b, 'is:', product)
Run to view results