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.