mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
Improved Code and removed Warnings (#483)
This commit is contained in:
@@ -7,7 +7,7 @@ By considering the terms in the Fibonacci sequence whose values do not exceed n,
|
||||
e.g. for n=10, we have {2,8}, sum is 10.
|
||||
'''
|
||||
"""Python 3"""
|
||||
n = int(input())
|
||||
n = int(raw_input())
|
||||
a=0
|
||||
b=2
|
||||
count=0
|
||||
|
||||
Reference in New Issue
Block a user