cara menambahkan nilai dalam python

#To add
x = 1 #The Values
y = 1 #The Values
sum = float(x) + float(y) #add values after converting to floats
#optinal
print(sum)
Joyous Jaguar