Comment faire l'ajout dans Python

firstNumber = 3
secondNumber = 4

sum = firstNumber + secondNumber
print(sum)

# Output : 7
Red Dragon