3 lines
51 B
Python
3 lines
51 B
Python
|
def v2a(a, b):
|
||
|
return a[0] + b[0], a[1] + b[1]
|