ConvertQCM/C1/vs/q48_51.py
2025-08-26 18:38:28 +02:00

5 lines
No EOL
53 B
Python

def cube(a):
a = a*a*a
return a
a = 2
b = cube(a)