cara membuat tambahan dalam python

firstNumber = 3
secondNumber = 4

sum = firstNumber + secondNumber
print(sum)

# Output : 7
Red Dragon