#!/usr/bin/env python # coding: utf-8 # In[ ]: Fn_1 = 1 Fn = 1 n = 2 while Fn < 10**999: Fn_1, Fn = Fn, Fn_1 + Fn n += 1