Menambahkan nomor menggunakan fungsi python

# Welcome to softhunt.net
def adder(x,y,z):
    print("sum:",x+y+z)

adder(78,34,12)
Outrageous Ostrich