cmd+k|ctrl+k
cmd+k
ctrl+k
Navigation
Browse public code snippets.
Contact us about glot.io.
Read the privacy policy.
Manage snippets in your account.
Open your account settings.
Languages
Create a new Python snippet.
Create a new TypeScript snippet.
Create a new C snippet.
Create a new Rust snippet.
Create a new Java snippet.
Python
public
jameeulla3
2025-11-06T00:27:25.096122Z
2025-11-06T00:29:57.686641Z
def fib(n): if n==1 or n==2: return n-1 res = fib(n-1) + fib(n-2) return res print(fib(30))