class Solution: def Fibonacci(self , n: int) -> int: # write code here if n <= 2: &nb...