3.gwf 89 B

12345
  1. def a(x,y,*a,z,**k){
  2. print(x + y * a[1] + z / k["b"])
  3. }
  4. a(*[2,3],3,4,5,6,b=5,**{"z":2})