sum.py
// put# Calculate the sum of two numbers
num1 = 10
num2 = 20
sum = num1 + num2
print("The sum is:", sum) your code here        

Python Code

Python Logo