7 lines
95 B
Text
7 lines
95 B
Text
def foo(a):
|
|
b = 12*a
|
|
return a, 2*a, 5*b, a*b
|
|
|
|
def main(i):
|
|
x, y, z, t = foo(i)
|
|
return 1
|