5 lines
No EOL
53 B
Python
5 lines
No EOL
53 B
Python
def cube(a):
|
|
a = a*a*a
|
|
return a
|
|
a = 2
|
|
b = cube(a) |