7 lines
No EOL
76 B
Python
7 lines
No EOL
76 B
Python
def f(x):
|
|
y = 2*x + 1
|
|
return y
|
|
|
|
def calcul(x):
|
|
y = x - 1
|
|
return f(y) |