Get your own Python server Result Size: 625 x 565
x
 
def my_function(a, b, /, *, c, d):
  print(a + b + c + d)
my_function(5, 6, c = 7, d = 8)
26