60.4k views
5 votes
write a program that stores the integers 50 and 100 in variables and stores the sum of these two in a variable named total. display the total on the screen.

1 Answer

5 votes

in python

num1 = 50

num2 = 100

total = num1 + num2

print("The total is:", total)

In this code, the variables num1 and num2 are assigned the values 50 and 100, respectively. The sum of these two values is calculated and stored in the variable total. Finally, the value of total is displayed on the screen using the print function.

User Ravi Jethva
by
7.6k points