n = 4

if n <= 2:
    print(n)

dp = [0] * (n + 1)
dp[1] = 1
dp[2] = 2

for i in range(3, n + 1):
    dp[i] = dp[i - 1] + dp[i - 2]

print(dp[n])

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: