Scratch Python

def plus(n1 = 0, n2 = 0):
    return n1 + n2;

print(plus(5,10));

PinkCoding

PinkCoding