mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-15 01:16:36 +03:00
10 lines
148 B
Python
10 lines
148 B
Python
def f(n):
|
|
if n < 3:
|
|
return 1
|
|
if n % 2 == 0:
|
|
return f(n - 1) + n - 1
|
|
return f(n - 2) + 2 * n - 2
|
|
|
|
|
|
print(f(33))
|