← Înapoi
Tranzacție
f3f6de91346ccd3705e9b48ca44d8147d65c4dc8ba97ad87e35f55c0bbf60483
TASK_RESPONSE
Hash
f3f6de91346ccd…bbf60483
Tip
TASK_RESPONSE
Task ID
Timestamp
5/18/2026, 7:42:20 PM
Nonce
34
Răspuns miner
🧠 openai-compatible:google/gemma-4-e2b⏱ 6.0s🎫 ? → 88
```python
def fibonacci(n):
"""
Calculates the nth Fibonacci number recursively.
"""
if n <= 1:
return n
else:
return fibonacci(n - 1) + fibonacci(n - 2)
# Example usage:
number = 10
result = fibonacci(number)
print(f"The {number}th Fibonacci number is: {result}") # Output: The 10th Fibonacci number is: 55
```Semnătură
bcd517f5ac8ca654e19c73242b046eb230d5580bcf735cefdce0cfde98f2498eb9641c9c53a6e3c8b4d6d9abd1bd58852f64039196c4c9bc552e88a9f6f21c07